12 lines
220 B
Rust
12 lines
220 B
Rust
pub mod storage;
|
|
|
|
use crate::navigation::navigation::Mutex;
|
|
use crate::peripherals::storage::store::Store;
|
|
|
|
use esp_hal::rtc_cntl::Rtc;
|
|
|
|
pub struct Peripherals {
|
|
pub store: Mutex<Store>,
|
|
pub rtc: Rtc<'static>,
|
|
}
|