mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
net-esp-hosted: add get_status()
This commit is contained in:
parent
ce662766be
commit
1180e1770d
@ -19,6 +19,8 @@ pub struct Control<'a> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
|
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
|
||||||
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
||||||
enum WifiMode {
|
enum WifiMode {
|
||||||
None = 0,
|
None = 0,
|
||||||
Sta = 1,
|
Sta = 1,
|
||||||
@ -26,6 +28,18 @@ enum WifiMode {
|
|||||||
ApSta = 3,
|
ApSta = 3,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub use proto::CtrlWifiSecProt as Security;
|
||||||
|
|
||||||
|
#[derive(Clone, Debug)]
|
||||||
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
||||||
|
pub struct Status {
|
||||||
|
pub ssid: String<32>,
|
||||||
|
pub bssid: [u8; 6],
|
||||||
|
pub rssi: i32,
|
||||||
|
pub channel: u32,
|
||||||
|
pub security: Security,
|
||||||
|
}
|
||||||
|
|
||||||
macro_rules! ioctl {
|
macro_rules! ioctl {
|
||||||
($self:ident, $req_variant:ident, $resp_variant:ident, $req:ident, $resp:ident) => {
|
($self:ident, $req_variant:ident, $resp_variant:ident, $req:ident, $resp:ident) => {
|
||||||
let mut msg = proto::CtrlMsg {
|
let mut msg = proto::CtrlMsg {
|
||||||
@ -34,7 +48,9 @@ macro_rules! ioctl {
|
|||||||
payload: Some(proto::CtrlMsgPayload::$req_variant($req)),
|
payload: Some(proto::CtrlMsgPayload::$req_variant($req)),
|
||||||
};
|
};
|
||||||
$self.ioctl(&mut msg).await?;
|
$self.ioctl(&mut msg).await?;
|
||||||
let Some(proto::CtrlMsgPayload::$resp_variant($resp)) = msg.payload else {
|
#[allow(unused_mut)]
|
||||||
|
let Some(proto::CtrlMsgPayload::$resp_variant(mut $resp)) = msg.payload
|
||||||
|
else {
|
||||||
warn!("unexpected response variant");
|
warn!("unexpected response variant");
|
||||||
return Err(Error::Internal);
|
return Err(Error::Internal);
|
||||||
};
|
};
|
||||||
@ -66,6 +82,19 @@ impl<'a> Control<'a> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn get_status(&mut self) -> Result<Status, Error> {
|
||||||
|
let req = proto::CtrlMsgReqGetApConfig {};
|
||||||
|
ioctl!(self, ReqGetApConfig, RespGetApConfig, req, resp);
|
||||||
|
trim_nulls(&mut resp.ssid);
|
||||||
|
Ok(Status {
|
||||||
|
ssid: resp.ssid,
|
||||||
|
bssid: parse_mac(&resp.bssid)?,
|
||||||
|
rssi: resp.rssi as _,
|
||||||
|
channel: resp.chnl,
|
||||||
|
security: resp.sec_prot,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn connect(&mut self, ssid: &str, password: &str) -> Result<(), Error> {
|
pub async fn connect(&mut self, ssid: &str, password: &str) -> Result<(), Error> {
|
||||||
let req = proto::CtrlMsgReqConnectAp {
|
let req = proto::CtrlMsgReqConnectAp {
|
||||||
ssid: String::from(ssid),
|
ssid: String::from(ssid),
|
||||||
@ -98,27 +127,7 @@ impl<'a> Control<'a> {
|
|||||||
mode: WifiMode::Sta as _,
|
mode: WifiMode::Sta as _,
|
||||||
};
|
};
|
||||||
ioctl!(self, ReqGetMacAddress, RespGetMacAddress, req, resp);
|
ioctl!(self, ReqGetMacAddress, RespGetMacAddress, req, resp);
|
||||||
|
parse_mac(&resp.mac)
|
||||||
// WHY IS THIS A STRING? WHYYYY
|
|
||||||
fn nibble_from_hex(b: u8) -> u8 {
|
|
||||||
match b {
|
|
||||||
b'0'..=b'9' => b - b'0',
|
|
||||||
b'a'..=b'f' => b + 0xa - b'a',
|
|
||||||
b'A'..=b'F' => b + 0xa - b'A',
|
|
||||||
_ => panic!("invalid hex digit {}", b),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let mac = resp.mac.as_bytes();
|
|
||||||
let mut res = [0; 6];
|
|
||||||
if mac.len() != 17 {
|
|
||||||
warn!("unexpected MAC respnse length");
|
|
||||||
return Err(Error::Internal);
|
|
||||||
}
|
|
||||||
for (i, b) in res.iter_mut().enumerate() {
|
|
||||||
*b = (nibble_from_hex(mac[i * 3]) << 4) | nibble_from_hex(mac[i * 3 + 1])
|
|
||||||
}
|
|
||||||
Ok(res)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn set_wifi_mode(&mut self, mode: u32) -> Result<(), Error> {
|
async fn set_wifi_mode(&mut self, mode: u32) -> Result<(), Error> {
|
||||||
@ -167,3 +176,35 @@ impl<'a> Control<'a> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WHY IS THIS A STRING? WHYYYY
|
||||||
|
fn parse_mac(mac: &str) -> Result<[u8; 6], Error> {
|
||||||
|
fn nibble_from_hex(b: u8) -> Result<u8, Error> {
|
||||||
|
match b {
|
||||||
|
b'0'..=b'9' => Ok(b - b'0'),
|
||||||
|
b'a'..=b'f' => Ok(b + 0xa - b'a'),
|
||||||
|
b'A'..=b'F' => Ok(b + 0xa - b'A'),
|
||||||
|
_ => {
|
||||||
|
warn!("invalid hex digit {}", b);
|
||||||
|
Err(Error::Internal)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let mac = mac.as_bytes();
|
||||||
|
let mut res = [0; 6];
|
||||||
|
if mac.len() != 17 {
|
||||||
|
warn!("unexpected MAC length");
|
||||||
|
return Err(Error::Internal);
|
||||||
|
}
|
||||||
|
for (i, b) in res.iter_mut().enumerate() {
|
||||||
|
*b = (nibble_from_hex(mac[i * 3])? << 4) | nibble_from_hex(mac[i * 3 + 1])?
|
||||||
|
}
|
||||||
|
Ok(res)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn trim_nulls<const N: usize>(s: &mut String<N>) {
|
||||||
|
while s.chars().rev().next() == Some(0 as char) {
|
||||||
|
s.pop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user