Files
dongheng 68e990c99f feat(freertos): Clean up unused or unsupported code for ESP8266
Make it easy for other OS platform to use these code.

If users want to add other OSes, they only should add 3 files:
1. "port.c":  init task stack and switch task function
2. "osi.c": wrapper APIs to FreeRTOS from other OSes
3. "heap.c": wrapper APIs for other OSes' heap APIs
2019-03-27 11:45:57 +08:00

15 lines
381 B
Makefile

# Component Makefile
#
COMPONENT_ADD_INCLUDEDIRS += include \
include/freertos \
include/freertos/private \
port/esp8266/include \
port/esp8266/include/freertos
COMPONENT_SRCDIRS := port/esp8266
ifndef CONFIG_DISABLE_FREERTOS
COMPONENT_SRCDIRS += freertos
endif