mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-09-02 09:03:48 +00:00
* Add uConsole GTK shell with SQLite map cache * Improve uConsole GTK overview dashboard * Detect uConsole hardware endpoints * Add uConsole hardware binding and map fallback * Improve uConsole settings and map UI * feat: adapt uConsole Linux shell * docs: document GPS settings and T-Deck UART noise * style: apply clang-format * site: update 0.1.25 release highlights --------- Co-authored-by: vicliu624 <vicliu@outlook.com>
19 lines
378 B
C++
19 lines
378 B
C++
#pragma once
|
|
|
|
#include "platform/surface_presenter.h"
|
|
|
|
namespace trailmate::uconsole
|
|
{
|
|
|
|
struct UConsoleShellOptions
|
|
{
|
|
int width = 1280;
|
|
int height = 720;
|
|
int frame_time_ms = 16;
|
|
};
|
|
|
|
void runUConsoleShell(::trailmate::cardputer_zero::platform::SurfacePresenter& presenter,
|
|
UConsoleShellOptions options = {});
|
|
|
|
} // namespace trailmate::uconsole
|