Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/core/serialcmds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,9 @@ void startSerialCommandsHandlerTask(bool initQueues) {
2, // Priority of the task
&serialcmdsTaskHandle, // Task handle (optional, can be NULL).
#if SOC_CPU_CORES_NUM > 1
1 // Core where the task should run. By default, all your Arduino code runs on Core 1 and the Wi-Fi
// and RF functions
0 // PRO_CPU - background tasks run on core 0, UI runs on core 1 (Arduino default)
#else
0 // Core where the task should run. ESP32-C5 has only one core
0 // Single core - doesn't matter
#endif
); // (these are usually hidden from the Arduino environment) use the Core 0.
if (!serialcmdsTaskHandle) { Serial.println("Failed to create Serial Commands Handler task"); }
Expand Down