mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-08-16 07:39:52 +00:00
* refactor: render chat rows from presentation state * Fix Meshtastic channel sync and add MeshCore CN preset * Add granular chat notification settings * Add SD settings backup and restore * Prepare 0.1.26-alpha release --------- Co-authored-by: vicliu624 <vicliu@outlook.com>
15 lines
259 B
C++
15 lines
259 B
C++
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
namespace platform::nrf52::debug_console
|
|
{
|
|
|
|
void begin();
|
|
void print(const char* text);
|
|
void println();
|
|
void println(const char* text);
|
|
void printf(const char* format, ...);
|
|
|
|
} // namespace platform::nrf52::debug_console
|