|
77 | 77 | #define configUSE_EVENT_GROUPS 1 |
78 | 78 |
|
79 | 79 | /* Co-routine definitions. */ |
80 | | -#define configUSE_CO_ROUTINES 0 |
81 | | -#define configMAX_CO_ROUTINE_PRIORITIES ( 2 ) |
| 80 | +#define configUSE_CO_ROUTINES 0 |
| 81 | +#define configMAX_CO_ROUTINE_PRIORITIES ( 2 ) |
82 | 82 |
|
83 | 83 | /* Currently the TCP/IP stack is using dynamic allocation, and the MQTT task is |
84 | 84 | * using static allocation. */ |
85 | | -#define configSUPPORT_DYNAMIC_ALLOCATION 1 |
86 | | -#define configSUPPORT_STATIC_ALLOCATION 1 |
| 85 | +#define configSUPPORT_DYNAMIC_ALLOCATION 1 |
| 86 | +#define configSUPPORT_STATIC_ALLOCATION 1 |
87 | 87 |
|
88 | 88 | /* Set the following definitions to 1 to include the API function, or zero |
89 | 89 | * to exclude the API function. */ |
90 | | -#define INCLUDE_vTaskPrioritySet 1 |
91 | | -#define INCLUDE_uxTaskPriorityGet 1 |
92 | | -#define INCLUDE_vTaskDelete 1 |
93 | | -#define INCLUDE_vTaskCleanUpResources 0 |
94 | | -#define INCLUDE_vTaskSuspend 1 |
95 | | -#define INCLUDE_vTaskDelayUntil 1 |
96 | | -#define INCLUDE_vTaskDelay 1 |
97 | | -#define INCLUDE_uxTaskGetStackHighWaterMark 1 |
98 | | -#define INCLUDE_xTaskGetSchedulerState 1 |
99 | | -#define INCLUDE_xTimerGetTimerTaskHandle 0 |
100 | | -#define INCLUDE_xTaskGetIdleTaskHandle 0 |
101 | | -#define INCLUDE_xQueueGetMutexHolder 1 |
102 | | -#define INCLUDE_eTaskGetState 1 |
103 | | -#define INCLUDE_xEventGroupSetBitsFromISR 1 |
104 | | -#define INCLUDE_xTimerPendFunctionCall 1 |
105 | | -#define INCLUDE_xTaskGetCurrentTaskHandle 1 |
106 | | -#define INCLUDE_xTaskAbortDelay 1 |
| 90 | +#define INCLUDE_vTaskPrioritySet 1 |
| 91 | +#define INCLUDE_uxTaskPriorityGet 1 |
| 92 | +#define INCLUDE_vTaskDelete 1 |
| 93 | +#define INCLUDE_vTaskCleanUpResources 0 |
| 94 | +#define INCLUDE_vTaskSuspend 1 |
| 95 | +#define INCLUDE_vTaskDelayUntil 1 |
| 96 | +#define INCLUDE_vTaskDelay 1 |
| 97 | +#define INCLUDE_uxTaskGetStackHighWaterMark 1 |
| 98 | +#define INCLUDE_xTaskGetSchedulerState 1 |
| 99 | +#define INCLUDE_xTimerGetTimerTaskHandle 0 |
| 100 | +#define INCLUDE_xTaskGetIdleTaskHandle 0 |
| 101 | +#define INCLUDE_xQueueGetMutexHolder 1 |
| 102 | +#define INCLUDE_eTaskGetState 1 |
| 103 | +#define INCLUDE_xEventGroupSetBitsFromISR 1 |
| 104 | +#define INCLUDE_xTimerPendFunctionCall 1 |
| 105 | +#define INCLUDE_xTaskGetCurrentTaskHandle 1 |
| 106 | +#define INCLUDE_xTaskAbortDelay 1 |
107 | 107 |
|
108 | 108 | /* This demo makes use of one or more example stats formatting functions. These |
109 | 109 | * format the raw data provided by the uxTaskGetSystemState() function in to human |
|
112 | 112 | * is set to 2 so the formatting functions are included without the stdio.h being |
113 | 113 | * included in tasks.c. That is because this project defines its own sprintf() |
114 | 114 | * functions. */ |
115 | | -#define configUSE_STATS_FORMATTING_FUNCTIONS 1 |
| 115 | +#define configUSE_STATS_FORMATTING_FUNCTIONS 1 |
116 | 116 |
|
117 | 117 | /* Assert call defined for debug builds. */ |
118 | 118 | void vAssertCalled( const char * pcFile, |
|
0 commit comments