mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-14 06:42:34 +00:00
26 lines
633 B
C++
26 lines
633 B
C++
#include "WorkerThread.h"
|
|
#include "debug.h"
|
|
|
|
namespace concurrency {
|
|
|
|
void WorkerThread::doRun()
|
|
{
|
|
while (!wantExit) {
|
|
block();
|
|
|
|
#ifdef DEBUG_STACK
|
|
static uint32_t lastPrint = 0;
|
|
if (millis() - lastPrint > 10 * 1000L) {
|
|
lastPrint = millis();
|
|
uint32_t taskHandle = reinterpret_cast<uint32_t>(xTaskGetCurrentTaskHandle());
|
|
DEBUG_MSG("printThreadInfo(%s) task: %" PRIx32 " core id: %u min free stack: %u\n", "thread", taskHandle, xPortGetCoreID(),
|
|
uxTaskGetStackHighWaterMark(nullptr));
|
|
}
|
|
#endif
|
|
|
|
loop();
|
|
}
|
|
}
|
|
|
|
} // namespace concurrency
|