Files
trail-mate/platform/linux/uconsole/include/uconsole/uconsole_desktop_shell.h
T
vicliu adf33068d7 v0.1.25-alpha (#30)
* 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>
2026-05-12 01:24:04 +08:00

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