mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-08-22 10:39:45 +00:00
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>
This commit is contained in:
+6
-6
@@ -1,25 +1,25 @@
|
||||
#include <Arduino.h>
|
||||
|
||||
#if defined(GAT562_MESH_EVB_PRO)
|
||||
#include "apps/gat562_mesh_evb_pro/arduino_entry.h"
|
||||
#include "nrf52_node_arduino_entry.h"
|
||||
#else
|
||||
#include "apps/esp_pio/arduino_entry.h"
|
||||
#include "esp32_lvgl_arduino_entry.h"
|
||||
#endif
|
||||
|
||||
void setup()
|
||||
{
|
||||
#if defined(GAT562_MESH_EVB_PRO)
|
||||
apps::gat562_mesh_evb_pro::arduino_entry::setup();
|
||||
trailmate::apps::nrf52_node::arduino_entry::setup();
|
||||
#else
|
||||
apps::esp_pio::arduino_entry::setup();
|
||||
trailmate::apps::esp32_lvgl::arduino_entry::setup();
|
||||
#endif
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
#if defined(GAT562_MESH_EVB_PRO)
|
||||
apps::gat562_mesh_evb_pro::arduino_entry::loop();
|
||||
trailmate::apps::nrf52_node::arduino_entry::loop();
|
||||
#else
|
||||
apps::esp_pio::arduino_entry::loop();
|
||||
trailmate::apps::esp32_lvgl::arduino_entry::loop();
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user