mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-07-02 01:51:42 +00:00
e5c11d6473
* feat(ui): add runtime English and Chinese localization * fix(meshtastic): harden t-deck send and ack recovery Align the T-Deck SX1262 setup with the reference firmware, switch critical radio SPI paths to blocking access, and share RX restart state between direct send paths and the radio task so TX-to-RX handoff cannot silently get stuck. Also unify Meshtastic wire transmission through a single helper, keep wire packets for ACK-tracked sends, retry ACK timeouts up to three times, and document the issue #21 repair checklist. Validation: local builds passed for tdeck, tlora_pager_sx1262, lilygo_twatch_s3, and gat562_mesh_evb_pro; clang-format check passed. Testing status: not fully tested on hardware yet. * Refactor LXMF runtime toward full Reticulum alignment Split adapter runtime state into transport, link, and propagation domains. Add pending path request tracking, stronger link teardown semantics, outbound link establishment, deferred link payload flushing, link keepalive/stale handling, and inbound split-resource assembly. Document the authoritative Reticulum/LXMF runtime alignment plan and mark the older device-mode plan as historical context. * feat(web): add pages site and web flasher release flow
15 lines
332 B
C++
15 lines
332 B
C++
#pragma once
|
|
|
|
#include "lvgl.h"
|
|
|
|
class AppScreen
|
|
{
|
|
public:
|
|
virtual ~AppScreen() = default;
|
|
virtual const char* stable_id() const = 0;
|
|
virtual const char* name() const = 0;
|
|
virtual const lv_image_dsc_t* icon() const = 0;
|
|
virtual void enter(lv_obj_t* parent) = 0;
|
|
virtual void exit(lv_obj_t* parent) = 0;
|
|
};
|