1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-15 07:29:15 +01:00

pios: include memory allocator for F4 FreeRTOS targets by default

This is by analogy to F1 FreeRTOS tagrgets which always use heap_1.
This commit is contained in:
Oleg Semyonov 2013-03-17 13:32:48 +02:00
parent 6502cea50e
commit dbe1c39c47

View File

@ -54,4 +54,5 @@ ifneq ($(FREERTOS_DIR),)
FREERTOS_PORTDIR := $(PIOS_DEVLIB)/Libraries/FreeRTOS/Source
SRC += $(wildcard $(FREERTOS_PORTDIR)/portable/GCC/ARM_CM4F/*.c)
EXTRAINCDIRS += $(FREERTOS_PORTDIR)/portable/GCC/ARM_CM4F
include $(PIOSCOMMON)/Libraries/msheap/library.mk
endif