diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-09-18 21:24:50 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2024-09-18 21:24:50 +0200 |
| commit | 60f93b42e262dc30bf7bd3767b1912a92f9e0f43 (patch) | |
| tree | 1a99bee6b7c63b8d8f59195ef2897e002b48be5a | |
| parent | a406a01459a5c759c044a181ba992fb2bc9e1150 (diff) | |
net-esp-hosted: set wpa3_supported=true.
I've noticed wpa3 still works without this flag, so I'm not sure what this does tbh...
| -rw-r--r-- | embassy-net-esp-hosted/src/control.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-net-esp-hosted/src/control.rs b/embassy-net-esp-hosted/src/control.rs index c8cea8503..b1838a425 100644 --- a/embassy-net-esp-hosted/src/control.rs +++ b/embassy-net-esp-hosted/src/control.rs | |||
| @@ -120,7 +120,7 @@ impl<'a> Control<'a> { | |||
| 120 | pwd: unwrap!(String::try_from(password)), | 120 | pwd: unwrap!(String::try_from(password)), |
| 121 | bssid: String::new(), | 121 | bssid: String::new(), |
| 122 | listen_interval: 3, | 122 | listen_interval: 3, |
| 123 | is_wpa3_supported: false, | 123 | is_wpa3_supported: true, |
| 124 | }; | 124 | }; |
| 125 | ioctl!(self, ReqConnectAp, RespConnectAp, req, resp); | 125 | ioctl!(self, ReqConnectAp, RespConnectAp, req, resp); |
| 126 | self.state_ch.set_link_state(LinkState::Up); | 126 | self.state_ch.set_link_state(LinkState::Up); |
