14 lines
255 B
Rust
14 lines
255 B
Rust
pub mod storage;
|
|
|
|
use crate::Mutex;
|
|
use crate::network::wifi::Wifi;
|
|
use crate::peripherals::storage::store::Store;
|
|
|
|
use esp_hal::rtc_cntl::Rtc;
|
|
|
|
pub struct Peripherals {
|
|
pub store: Mutex<Store>,
|
|
pub rtc: Rtc<'static>,
|
|
pub wifi: Mutex<Wifi>,
|
|
}
|