mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-28 21:48:05 +08:00

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
15 lines
381 B
Makefile
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
|