mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-07-18 17:46:22 +00:00
* fix(tdeck): improve display startup and brightness handling * fix(energy-sweep): use instant RSSI and only lock LoRa while scanning * feat(cardputer-zero): add linux shells and M5 SDK baseline * feat(cardputer-zero): add linux runtime baseline and shell ui simulator * feat(cardputer-zero): unify linux shell boot and polish simulator * docs(cardputer-zero): define final-shape adaptation spec * feat(cardputer-zero): integrate shared linux runtimes and pages * fix(linux-sim): mount repo root in dev container * Fix GPS runtime semantics and transport init Add a GPS specification and align platform runtimes around explicit GPS enable, power, receiver configuration, and external NMEA export semantics. Keep internal NMEA parsing independent from external export settings, stop treating gps_mode as an enable flag, and update phone/UI config paths to use gps_enabled. Decouple board-level GPS transport readiness from UBX receiver probing on T-Deck, T-Deck Pro, and T-LoRa Pager, and let boards own UART teardown. Verified with pio run -e tdeck, pio run -e tlora_pager_sx1262, pio run -e gat562_mesh_evb_pro, and pio run -e tdeck_pro_a7682e. * Add Russian localization pack Add an installable European Cyrillic Extended locale bundle with Russian translations, Cyrillic font metadata, and package catalog entry. Credit polarikus for the Russian translations based on the polarikus/trail-mate localization PR. * Prepare 0.1.23-alpha release * Fix T-Watch Morse release build * Format CI-checked sources * Fix Cardputer Linux CI dependencies * Fix WSL validation smoke target build * Prepare 0.1.24-alpha release * fix: unblock Cardputer Zero Linux CI
38 lines
814 B
C
38 lines
814 B
C
#ifndef LV_CONF_H
|
|
#define LV_CONF_H
|
|
|
|
#define LV_COLOR_DEPTH 16
|
|
|
|
#define LV_USE_STDLIB_MALLOC LV_STDLIB_CLIB
|
|
#define LV_USE_STDLIB_STRING LV_STDLIB_CLIB
|
|
#define LV_USE_STDLIB_SPRINTF LV_STDLIB_CLIB
|
|
|
|
#define LV_USE_OS LV_OS_NONE
|
|
|
|
#define LV_FONT_MONTSERRAT_10 1
|
|
#define LV_FONT_MONTSERRAT_12 1
|
|
#define LV_FONT_MONTSERRAT_14 1
|
|
#define LV_FONT_MONTSERRAT_16 1
|
|
#define LV_FONT_MONTSERRAT_18 1
|
|
#define LV_FONT_MONTSERRAT_20 1
|
|
#define LV_FONT_MONTSERRAT_24 1
|
|
|
|
#define LV_USE_SDL 0
|
|
|
|
#if defined(_WIN32)
|
|
#define LV_USE_FS_WIN32 1
|
|
#define LV_FS_WIN32_LETTER 'A'
|
|
#define LV_FS_WIN32_PATH ""
|
|
#define LV_FS_WIN32_CACHE_SIZE 0
|
|
#else
|
|
#define LV_USE_FS_POSIX 1
|
|
#define LV_FS_POSIX_LETTER 'A'
|
|
#define LV_FS_POSIX_PATH ""
|
|
#define LV_FS_POSIX_CACHE_SIZE 0
|
|
#endif
|
|
|
|
#define LV_USE_LODEPNG 1
|
|
#define LV_USE_TJPGD 1
|
|
|
|
#endif // LV_CONF_H
|