aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorkbleeke <[email protected]>2023-03-21 19:32:39 +0100
committerkbleeke <[email protected]>2023-03-21 19:32:39 +0100
commit29494a9296552334cc9dd2359c16dfbf8f3e7efc (patch)
treea98ff6e9fb5a0f32041ff2e850a6cfca61dba71f /src
parentf82f931dc2b8df2338fb8331ad27d667811e5c09 (diff)
parent0e946dfb203dcf1ca3f165ffb06f3f58d4eaa119 (diff)
Merge branch 'master' into pio
Diffstat (limited to 'src')
-rw-r--r--src/events.rs14
-rw-r--r--src/lib.rs42
2 files changed, 49 insertions, 7 deletions
diff --git a/src/events.rs b/src/events.rs
index a828eec98..9e6bb9625 100644
--- a/src/events.rs
+++ b/src/events.rs
@@ -3,6 +3,9 @@
3 3
4use core::num; 4use core::num;
5 5
6use embassy_sync::blocking_mutex::raw::CriticalSectionRawMutex;
7use embassy_sync::pubsub::{PubSubChannel, Publisher, Subscriber};
8
6#[derive(Clone, Copy, PartialEq, Eq, num_enum::FromPrimitive)] 9#[derive(Clone, Copy, PartialEq, Eq, num_enum::FromPrimitive)]
7#[cfg_attr(feature = "defmt", derive(defmt::Format))] 10#[cfg_attr(feature = "defmt", derive(defmt::Format))]
8#[repr(u8)] 11#[repr(u8)]
@@ -280,3 +283,14 @@ pub enum Event {
280 /// highest val + 1 for range checking 283 /// highest val + 1 for range checking
281 LAST = 190, 284 LAST = 190,
282} 285}
286
287pub type EventQueue = PubSubChannel<CriticalSectionRawMutex, EventStatus, 2, 1, 1>;
288pub type EventPublisher<'a> = Publisher<'a, CriticalSectionRawMutex, EventStatus, 2, 1, 1>;
289pub type EventSubscriber<'a> = Subscriber<'a, CriticalSectionRawMutex, EventStatus, 2, 1, 1>;
290
291#[derive(Clone, Copy)]
292#[cfg_attr(feature = "defmt", derive(defmt::Format))]
293pub struct EventStatus {
294 pub event_type: Event,
295 pub status: u32,
296}
diff --git a/src/lib.rs b/src/lib.rs
index f0a7aaa0f..1b7d603d7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -20,13 +20,15 @@ use core::slice;
20use ch::driver::LinkState; 20use ch::driver::LinkState;
21use embassy_futures::yield_now; 21use embassy_futures::yield_now;
22use embassy_net_driver_channel as ch; 22use embassy_net_driver_channel as ch;
23use embassy_sync::pubsub::PubSubBehavior;
23use embassy_time::{block_for, Duration, Timer}; 24use embassy_time::{block_for, Duration, Timer};
24use embedded_hal_1::digital::OutputPin; 25use embedded_hal_1::digital::OutputPin;
26use events::EventQueue;
25 27
26use crate::bus::Bus; 28use crate::bus::Bus;
27pub use crate::bus::SpiBusCyw43; 29pub use crate::bus::SpiBusCyw43;
28use crate::consts::*; 30use crate::consts::*;
29use crate::events::Event; 31use crate::events::{Event, EventStatus};
30use crate::structs::*; 32use crate::structs::*;
31 33
32const MTU: usize = 1514; 34const MTU: usize = 1514;
@@ -128,6 +130,7 @@ enum IoctlState {
128pub struct State { 130pub struct State {
129 ioctl_state: Cell<IoctlState>, 131 ioctl_state: Cell<IoctlState>,
130 ch: ch::State<MTU, 4, 4>, 132 ch: ch::State<MTU, 4, 4>,
133 events: EventQueue,
131} 134}
132 135
133impl State { 136impl State {
@@ -135,12 +138,14 @@ impl State {
135 Self { 138 Self {
136 ioctl_state: Cell::new(IoctlState::Idle), 139 ioctl_state: Cell::new(IoctlState::Idle),
137 ch: ch::State::new(), 140 ch: ch::State::new(),
141 events: EventQueue::new(),
138 } 142 }
139 } 143 }
140} 144}
141 145
142pub struct Control<'a> { 146pub struct Control<'a> {
143 state_ch: ch::StateRunner<'a>, 147 state_ch: ch::StateRunner<'a>,
148 event_sub: &'a EventQueue,
144 ioctl_state: &'a Cell<IoctlState>, 149 ioctl_state: &'a Cell<IoctlState>,
145} 150}
146 151
@@ -314,6 +319,7 @@ impl<'a> Control<'a> {
314 evts.unset(Event::PROBREQ_MSG_RX); 319 evts.unset(Event::PROBREQ_MSG_RX);
315 evts.unset(Event::PROBRESP_MSG); 320 evts.unset(Event::PROBRESP_MSG);
316 evts.unset(Event::PROBRESP_MSG); 321 evts.unset(Event::PROBRESP_MSG);
322 evts.unset(Event::ROAM);
317 323
318 self.set_iovar("bsscfg:event_msgs", &evts.to_bytes()).await; 324 self.set_iovar("bsscfg:event_msgs", &evts.to_bytes()).await;
319 325
@@ -394,8 +400,22 @@ impl<'a> Control<'a> {
394 ssid: [0; 32], 400 ssid: [0; 32],
395 }; 401 };
396 i.ssid[..ssid.len()].copy_from_slice(ssid.as_bytes()); 402 i.ssid[..ssid.len()].copy_from_slice(ssid.as_bytes());
403
404 let mut subscriber = self.event_sub.subscriber().unwrap();
397 self.ioctl(IoctlType::Set, 26, 0, &mut i.to_bytes()).await; // set_ssid 405 self.ioctl(IoctlType::Set, 26, 0, &mut i.to_bytes()).await; // set_ssid
398 406
407 loop {
408 let msg = subscriber.next_message_pure().await;
409 if msg.event_type == Event::AUTH && msg.status != 0 {
410 // retry
411 defmt::warn!("JOIN failed with status={}", msg.status);
412 self.ioctl(IoctlType::Set, 26, 0, &mut i.to_bytes()).await;
413 } else if msg.event_type == Event::JOIN && msg.status == 0 {
414 // successful join
415 break;
416 }
417 }
418
399 info!("JOINED"); 419 info!("JOINED");
400 } 420 }
401 421
@@ -490,6 +510,8 @@ pub struct Runner<'a, PWR, SPI> {
490 sdpcm_seq: u8, 510 sdpcm_seq: u8,
491 sdpcm_seq_max: u8, 511 sdpcm_seq_max: u8,
492 512
513 events: &'a EventQueue,
514
493 #[cfg(feature = "firmware-logs")] 515 #[cfg(feature = "firmware-logs")]
494 log: LogState, 516 log: LogState,
495} 517}
@@ -526,6 +548,8 @@ where
526 sdpcm_seq: 0, 548 sdpcm_seq: 0,
527 sdpcm_seq_max: 1, 549 sdpcm_seq_max: 1,
528 550
551 events: &state.events,
552
529 #[cfg(feature = "firmware-logs")] 553 #[cfg(feature = "firmware-logs")]
530 log: LogState { 554 log: LogState {
531 addr: 0, 555 addr: 0,
@@ -541,6 +565,7 @@ where
541 device, 565 device,
542 Control { 566 Control {
543 state_ch, 567 state_ch,
568 event_sub: &&state.events,
544 ioctl_state: &state.ioctl_state, 569 ioctl_state: &state.ioctl_state,
545 }, 570 },
546 runner, 571 runner,
@@ -882,13 +907,16 @@ where
882 return; 907 return;
883 } 908 }
884 909
910 let evt_type = events::Event::from(event_packet.msg.event_type as u8);
885 let evt_data = &bcd_packet[EventMessage::SIZE..][..event_packet.msg.datalen as usize]; 911 let evt_data = &bcd_packet[EventMessage::SIZE..][..event_packet.msg.datalen as usize];
886 debug!( 912 debug!("=== EVENT {}: {} {:02x}", evt_type, event_packet.msg, evt_data);
887 "=== EVENT {}: {} {:02x}", 913
888 events::Event::from(event_packet.msg.event_type as u8), 914 if evt_type == events::Event::AUTH || evt_type == events::Event::JOIN {
889 event_packet.msg, 915 self.events.publish_immediate(EventStatus {
890 evt_data 916 status: event_packet.msg.status,
891 ); 917 event_type: evt_type,
918 });
919 }
892 } 920 }
893 CHANNEL_TYPE_DATA => { 921 CHANNEL_TYPE_DATA => {
894 let bcd_header = BcdHeader::from_bytes(&payload[..BcdHeader::SIZE].try_into().unwrap()); 922 let bcd_header = BcdHeader::from_bytes(&payload[..BcdHeader::SIZE].try_into().unwrap());