Skip to content

Commit abfb417

Browse files
committed
FreeRTOS-10 - revert configIDLE_STACK_SIZE removal
1 parent f98eb0b commit abfb417

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Arduino_FreeRTOS.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ extern "C" {
8282
#error Missing definition: configMINIMAL_STACK_SIZE must be defined in FreeRTOSConfig.h. configMINIMAL_STACK_SIZE defines the size (in words) of the stack allocated to the idle task. Refer to the demo project provided for your port for a suitable value.
8383
#endif
8484

85+
#ifndef configIDLE_STACK_SIZE
86+
#error Missing definition: configIDLE_STACK_SIZE must be defined in FreeRTOSConfig.h. configIDLE_STACK_SIZE defines the size (in words) of the stack allocated to the idle task. Refer to the demo project provided for your port for a suitable value.
87+
#endif
88+
8589
#ifndef configMAX_PRIORITIES
8690
#error Missing definition: configMAX_PRIORITIES must be defined in FreeRTOSConfig.h. See the Configuration section of the FreeRTOS API documentation for details.
8791
#endif

0 commit comments

Comments
 (0)