mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-04 11:49:58 +00:00
2874b22d6c
* `Lock`: trivial wrapper for FreeRTOS binary semaphores * `LockGuard`: RAII wrapper for using `Lock` * `printThreadInfo`: helper for showing which core/FreeRTOS task we are running under
11 lines
193 B
C++
11 lines
193 B
C++
#pragma once
|
|
|
|
namespace meshtastic
|
|
{
|
|
|
|
/// Dumps out which core we are running on, and min level of remaining stack
|
|
/// seen.
|
|
void printThreadInfo(const char *extra);
|
|
|
|
} // namespace meshtastic
|