| 41 | SET_LOOP_TASK_STACK_SIZE(16 * 1024); |
| 42 | |
| 43 | void delayedStart(void* parameter) { |
| 44 | vTaskDelay(30000 / portTICK_PERIOD_MS); |
| 45 | if (config.runStatus != RUNSTATUS_RUN) { |
| 46 | wsLog("starting content generation"); |
| 47 | config.runStatus = RUNSTATUS_RUN; |
| 48 | } |
| 49 | vTaskDelay(10 / portTICK_PERIOD_MS); |
| 50 | vTaskDelete(NULL); |
| 51 | } |
| 52 | |
| 53 | void setup() { |
| 54 | #ifdef UART_LOGGING_TX_ONLY_PIN |