mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-08-06 15:15:15 +08:00
feat(freertos): Add option to enable queue sets
This commit is contained in:
@ -55,4 +55,10 @@ config TASK_SWITCH_FASTER
|
|||||||
|
|
||||||
But it may cost more 1KB IRAM, so user global heap may decrease 1KB.
|
But it may cost more 1KB IRAM, so user global heap may decrease 1KB.
|
||||||
|
|
||||||
|
config USE_QUEUE_SETS
|
||||||
|
bool "Using Queue Sets"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
Enable this option, the FreeRTOS macro "configUSE_QUEUE_SETS" in file "FreeRTOSConfig.h" will be set to be 1.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -133,5 +133,9 @@ NVIC value of 255. */
|
|||||||
#define TASK_SW_ATTR
|
#define TASK_SW_ATTR
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if CONFIG_USE_QUEUE_SETS
|
||||||
|
#define configUSE_QUEUE_SETS 1
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* FREERTOS_CONFIG_H */
|
#endif /* FREERTOS_CONFIG_H */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user