MCPcopy Create free account
hub / github.com/OpenEPaperLink/OpenEPaperLink / delayedStart

Function delayedStart

ESP32_AP-Flasher/src/main.cpp:43–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41SET_LOOP_TASK_STACK_SIZE(16 * 1024);
42
43void 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
53void setup() {
54#ifdef UART_LOGGING_TX_ONLY_PIN

Callers

nothing calls this directly

Calls 1

wsLogFunction · 0.85

Tested by

no test coverage detected