Files
trail-mate/src/main.cpp
T
vicliuandGitHub bf7068b02b 0.1.26-alpha release
* 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>
2026-05-19 16:04:42 +08:00

26 lines
497 B
C++

#include <Arduino.h>
#if defined(GAT562_MESH_EVB_PRO)
#include "nrf52_node_arduino_entry.h"
#else
#include "esp32_lvgl_arduino_entry.h"
#endif
void setup()
{
#if defined(GAT562_MESH_EVB_PRO)
trailmate::apps::nrf52_node::arduino_entry::setup();
#else
trailmate::apps::esp32_lvgl::arduino_entry::setup();
#endif
}
void loop()
{
#if defined(GAT562_MESH_EVB_PRO)
trailmate::apps::nrf52_node::arduino_entry::loop();
#else
trailmate::apps::esp32_lvgl::arduino_entry::loop();
#endif
}