lib/cyw43-driver: Update driver to latest version v1.1.0.
Includes various fixes and improvements to the WLAN driver, in particular: - Add WPA3 STA and AP support. - Attempt to reconnect to AP in response to validation error. - Update 43439 BT firmware for Data Length Extension fix. Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Submodule lib/cyw43-driver updated: 9f6405f0b3...dd7568229f
@@ -107,7 +107,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if MICROPY_HW_ENABLE_RF_SWITCH
|
#if MICROPY_HW_ENABLE_RF_SWITCH
|
||||||
#define CYW43_PIN_WL_RFSW_VDD pin_WL_RFSW_VDD
|
#define CYW43_PIN_RFSW_VDD pin_WL_RFSW_VDD
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define cyw43_schedule_internal_poll_dispatch(func) pendsv_schedule_dispatch(PENDSV_DISPATCH_CYW43, func)
|
#define cyw43_schedule_internal_poll_dispatch(func) pendsv_schedule_dispatch(PENDSV_DISPATCH_CYW43, func)
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
#include "extmod/modnetwork.h"
|
#include "extmod/modnetwork.h"
|
||||||
#include "pendsv.h"
|
#include "pendsv.h"
|
||||||
|
|
||||||
|
#define CYW43_INCLUDE_LEGACY_F1_OVERFLOW_WORKAROUND_VARIABLES (1)
|
||||||
#define CYW43_WIFI_NVRAM_INCLUDE_FILE "wifi_nvram_43439.h"
|
#define CYW43_WIFI_NVRAM_INCLUDE_FILE "wifi_nvram_43439.h"
|
||||||
#define CYW43_IOCTL_TIMEOUT_US (1000000)
|
#define CYW43_IOCTL_TIMEOUT_US (1000000)
|
||||||
#define CYW43_SLEEP_MAX (10)
|
#define CYW43_SLEEP_MAX (10)
|
||||||
|
|||||||
@@ -102,7 +102,7 @@
|
|||||||
#define CYW43_PIN_BT_CTS pyb_pin_BT_CTS
|
#define CYW43_PIN_BT_CTS pyb_pin_BT_CTS
|
||||||
|
|
||||||
#if MICROPY_HW_ENABLE_RF_SWITCH
|
#if MICROPY_HW_ENABLE_RF_SWITCH
|
||||||
#define CYW43_PIN_WL_RFSW_VDD pyb_pin_WL_RFSW_VDD
|
#define CYW43_PIN_RFSW_VDD pyb_pin_WL_RFSW_VDD
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define cyw43_schedule_internal_poll_dispatch(func) pendsv_schedule_dispatch(PENDSV_DISPATCH_CYW43, func)
|
#define cyw43_schedule_internal_poll_dispatch(func) pendsv_schedule_dispatch(PENDSV_DISPATCH_CYW43, func)
|
||||||
|
|||||||
Reference in New Issue
Block a user