mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-06-27 15:41:45 +00:00
bf7068b02b
* 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>
12 lines
247 B
C++
12 lines
247 B
C++
#include "nrf52_node_runtime_config.h"
|
|
|
|
#include <cassert>
|
|
|
|
int main()
|
|
{
|
|
const auto& config = trailmate::apps::nrf52_node::runtimeConfig();
|
|
assert(config.target_id != nullptr);
|
|
assert(config.target_profile != nullptr);
|
|
return 0;
|
|
}
|