diff options
| author | Jim Mussared <jim.mussared@gmail.com> | 2023-02-01 14:24:46 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2023-03-01 01:27:12 +1100 |
| commit | bad0098a4954e686cddb9321b4ecdd830d3b036e (patch) | |
| tree | a182035cc0cfc651f7f0574bf4db534566c466d0 /extmod/modnetwork.c | |
| parent | 6207b605cec6b6499c48a6ea81698076d3aff21a (diff) | |
stm32: Update to use the open-source lib version of cyw43-driver.
This removes the previous WiFi driver from drivers/cyw43 (but leaves behind
the BT driver), and makes the stm32 port (i.e. PYBD and Portenta) use the
new "lib/cyw43-driver" open-source driver already in use by the rp2 port.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'extmod/modnetwork.c')
| -rw-r--r-- | extmod/modnetwork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modnetwork.c b/extmod/modnetwork.c index 438c1ed74..7c1b91de4 100644 --- a/extmod/modnetwork.c +++ b/extmod/modnetwork.c @@ -37,7 +37,7 @@ #include "shared/netutils/netutils.h" #include "modnetwork.h" -#if MICROPY_PY_NETWORK_CYW43 && MICROPY_PY_NETWORK_CYW43_USE_LIB_DRIVER +#if MICROPY_PY_NETWORK_CYW43 // So that CYW43_LINK_xxx constants are available to MICROPY_PORT_NETWORK_INTERFACES. #include "lib/cyw43-driver/src/cyw43.h" #endif |
