File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -360,20 +360,21 @@ vTaskSendData([[maybe_unused]] void *pvParameters) { // NOSONAR
360360[[noreturn]] void
361361vTaskConfigure ([[maybe_unused]] void *pvParameters) { // NOSONAR
362362 while (true ) {
363- if (!loadConfigured) {
364- if (loadDevice.begin ()) {
365- ESP_LOGI (TAG , " MCP23008T initialized successfully." );
366- loadConfigured = true ;
367- } else {
368- ESP_LOGE (
369- TAG ,
370- " Failed to initialize MCP23008T. Retrying in 5 seconds..." );
371- delay (5000 );
372- }
373- } else {
374- // Sleep for 30 seconds
375- delay (RUN ::TASK_INTERVALS ::TI_CFG_ms);
376- }
363+ // if (!loadConfigured) {
364+ // if (loadDevice.begin()) { // FIXME!
365+ // ESP_LOGI(TAG, "MCP23008T initialized successfully.");
366+ // loadConfigured = true;
367+ // } else {
368+ // ESP_LOGE(
369+ // TAG,
370+ // "Failed to initialize MCP23008T. Retrying in 5
371+ // seconds...");
372+ // delay(5000);
373+ // }
374+ // } else {
375+ // Sleep for 30 seconds
376+ delay (RUN ::TASK_INTERVALS ::TI_CFG_ms);
377+ // }
377378 }
378379}
379380
You can’t perform that action at this time.
0 commit comments