mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-08-15 07:09:44 +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>
26 lines
497 B
C++
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
|
|
}
|