Skip to main content

firefly_runtime/
lib.rs

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