rainmaker_components/
wifi.rs

1mod base;
2pub use base::*;
3
4mod wifi_esp;
5mod wifi_linux;
6
7#[cfg(target_os = "espidf")]
8pub type WifiMgr<'a> =
9    base::WifiMgr<esp_idf_svc::wifi::BlockingWifi<esp_idf_svc::wifi::EspWifi<'a>>>;
10
11#[cfg(target_os = "linux")]
12pub type WifiMgr<'a> = base::WifiMgr<()>;