CYW43 accesspoint uncertain what to pass for param security to enable WPA2 mixed PSK #16536
-
In micropython i am enabling an accesspoint using the following code:
However, connecting to this AP does not work. When i change the code to:
it does work. A connection can be made to this accesspoint.
reveals that the security param is set to 0x00400006 which is CYW43_AUTH_WPA2_MIXED_PSK as defined in the cyw43 code. What i am unable to find is the correct value for security to pass in micropython to select the CYW43_AUTH_WPA2_MIXED_PSKin the cyw43 driver.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I figured it out myself. It seams to be that the 0x00400006 value is to be passed to the security parameter, so
has the same result as
|
Beta Was this translation helpful? Give feedback.
I figured it out myself. It seams to be that the 0x00400006 value is to be passed to the security parameter, so
has the same result as