use own wifi implementation to connect to wifi. store credentials in flash. no wifi connection yet

This commit is contained in:
2026-09-15 20:54:48 +02:00
committed by rhetenor
parent fafb4fc34f
commit 47b539f364
16 changed files with 344 additions and 1789 deletions
+3 -1
View File
@@ -1,6 +1,7 @@
pub mod storage;
use crate::navigation::navigation::Mutex;
use crate::Mutex;
use crate::network::wifi::Wifi;
use crate::peripherals::storage::store::Store;
use esp_hal::rtc_cntl::Rtc;
@@ -8,4 +9,5 @@ use esp_hal::rtc_cntl::Rtc;
pub struct Peripherals {
pub store: Mutex<Store>,
pub rtc: Rtc<'static>,
pub wifi: Mutex<Wifi>,
}