aboutsummaryrefslogtreecommitdiff
path: root/src/structs.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-05-01 14:50:29 +0000
committerGitHub <[email protected]>2023-05-01 14:50:29 +0000
commit73cd016885fc6db38c71ca3c1941554c864670ce (patch)
treeadc59df0d99eb70eeaffb404bc626351387e59ee /src/structs.rs
parent0589f2f36e29a6ad6506a0935f83131f69a106fe (diff)
parenta186694fddd00beb4c3b45349cd79ca1959b4d17 (diff)
Merge pull request #72 from tana/ap-mode
Add AP mode
Diffstat (limited to 'src/structs.rs')
-rw-r--r--src/structs.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/structs.rs b/src/structs.rs
index d01d5a65c..3b646e1a8 100644
--- a/src/structs.rs
+++ b/src/structs.rs
@@ -392,6 +392,15 @@ impl_bytes!(PassphraseInfo);
392#[derive(Clone, Copy)] 392#[derive(Clone, Copy)]
393#[cfg_attr(feature = "defmt", derive(defmt::Format))] 393#[cfg_attr(feature = "defmt", derive(defmt::Format))]
394#[repr(C)] 394#[repr(C)]
395pub struct SsidInfoWithIndex {
396 pub index: u32,
397 pub ssid_info: SsidInfo,
398}
399impl_bytes!(SsidInfoWithIndex);
400
401#[derive(Clone, Copy)]
402#[cfg_attr(feature = "defmt", derive(defmt::Format))]
403#[repr(C)]
395pub struct EventMask { 404pub struct EventMask {
396 pub iface: u32, 405 pub iface: u32,
397 pub events: [u8; 24], 406 pub events: [u8; 24],