uconsole-sleep 0.1.7

uConsole sleep service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Console Sleep Service Library
//! Pure Rust implementation with zero external dependencies

pub mod args;
pub mod config;
pub mod error;
pub mod hardware;
pub mod power_mode;

pub use config::Config;
pub use error::Error;
pub use hardware::cpu::CpuFreqConfig;
pub use hardware::rf::{BTConfig, WifiConfig};
pub use hardware::*;
pub use power_mode::PowerMode;
pub use power_mode::{enter_saving_mode, exit_saving_mode};