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:
vicliu
2026-05-19 16:04:42 +08:00
committed by GitHub
parent adf33068d7
commit bf7068b02b
1071 changed files with 78913 additions and 14110 deletions
+6 -6
View File
@@ -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
}