1#![cfg_attr(not(test), no_std)]
2#![allow(clippy::new_without_default, clippy::too_many_arguments)]
3
4extern crate alloc;
5
6mod battery;
7mod canvas;
8mod color;
9mod config;
10mod error;
11mod error_scene;
12mod frame_buffer;
13mod host;
14mod linking;
15mod menu;
16mod net;
17mod runtime;
18mod state;
19mod stats;
20mod utils;
21
22pub use color::Rgb16;
23pub use config::{FullID, FullIDError, RuntimeConfig};
24pub use error::Error;
25pub use frame_buffer::{FrameBuffer, RenderFB, HEIGHT, WIDTH};
26pub use runtime::Runtime;
27pub use state::NetHandler;