mirror of
https://github.com/Feliix42/ssd1675.git
synced 2024-11-22 10:56:31 +00:00
11 lines
146 B
Rust
11 lines
146 B
Rust
extern crate embedded_hal as hal;
|
|
|
|
mod interface;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
#[test]
|
|
fn it_works() {
|
|
assert_eq!(2 + 2, 4);
|
|
}
|
|
}
|