Skip to content

Commit b32e41a

Browse files
authored
ESP32: Remove unnecessary while(1) from examples (project-chip#12029)
1 parent 1adaf7a commit b32e41a

File tree

5 files changed

+2
-26
lines changed

5 files changed

+2
-26
lines changed

examples/all-clusters-app/esp32/main/main.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -682,10 +682,10 @@ extern "C" void app_main()
682682

683683
#endif // CONFIG_HAVE_DISPLAY
684684

685+
#if CONFIG_DEVICE_TYPE_M5STACK
685686
// Run the UI Loop
686687
while (true)
687688
{
688-
#if CONFIG_DEVICE_TYPE_M5STACK
689689
// TODO consider refactoring this example to use FreeRTOS tasks
690690

691691
bool woken = false;
@@ -710,10 +710,9 @@ extern "C" void app_main()
710710
}
711711
}
712712

713-
#endif // CONFIG_DEVICE_TYPE_M5STACK
714-
715713
vTaskDelay(50 / portTICK_PERIOD_MS);
716714
}
715+
#endif // CONFIG_DEVICE_TYPE_M5STACK
717716
}
718717

719718
bool lowPowerClusterSleep()

examples/ota-provider-app/esp32/main/main.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,4 @@ extern "C" void app_main()
225225
ChipLogError(BDX, "Failed to init BDX server: %s", chip::ErrorStr(error));
226226
return;
227227
}
228-
229-
// Run the UI Loop
230-
while (true)
231-
{
232-
vTaskDelay(50 / portTICK_PERIOD_MS);
233-
}
234228
}

examples/ota-requestor-app/esp32/main/main.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,4 @@ extern "C" void app_main()
179179
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
180180

181181
ESPInitConsole();
182-
183-
// Run the UI Loop
184-
while (true)
185-
{
186-
vTaskDelay(50 / portTICK_PERIOD_MS);
187-
}
188182
}

examples/pigweed-app/esp32/main/main.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,4 @@ extern "C" void app_main()
6464
ESP_LOGI(TAG, "----------- chip-esp32-pigweed-example starting -----------");
6565

6666
xTaskCreate(RunRpcService, "RPC", kRpcStackSizeBytes / sizeof(StackType_t), nullptr, kRpcTaskPriority, &rpcTaskHandle);
67-
68-
while (1)
69-
{
70-
vTaskDelay(50 / portTICK_PERIOD_MS);
71-
}
7267
}

examples/temperature-measurement-app/esp32/main/main.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,4 @@ extern "C" void app_main()
8484

8585
// Initialize device attestation config
8686
SetDeviceAttestationCredentialsProvider(Examples::GetExampleDACProvider());
87-
88-
// Run the UI Loop
89-
while (true)
90-
{
91-
vTaskDelay(50 / portTICK_PERIOD_MS);
92-
}
9387
}

0 commit comments

Comments
 (0)