smokepatio/
lib.rs

1//! Low-level hardware interfaces for Valve's Steam Deck
2
3#![cfg_attr(not(feature = "std"), no_std)]
4#![warn(missing_docs)]
5
6pub mod ec;
7
8#[cfg(test)]
9mod tests {
10
11    #[test]
12    fn it_works() {
13        assert_eq!(2 + 2, 4);
14    }
15}