mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 04:00:28 +01:00
stm32: Remove support for CC3000 WiFi driver.
It has been about 8 years since support for this chip was added. Reasons to remove it are: - It is no longer easy to obtain this part. - There are now many other options for WiFi. - It's not a good use of developer time to maintain it. Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
@@ -200,13 +200,6 @@ extern const struct _mod_network_nic_type_t mod_network_nic_type_wiznet5k;
|
||||
#define MICROPY_HW_NIC_WIZNET5K
|
||||
#endif
|
||||
|
||||
#if MICROPY_PY_CC3K
|
||||
extern const struct _mod_network_nic_type_t mod_network_nic_type_cc3k;
|
||||
#define MICROPY_HW_NIC_CC3K { MP_ROM_QSTR(MP_QSTR_CC3K), MP_ROM_PTR(&mod_network_nic_type_cc3k) },
|
||||
#else
|
||||
#define MICROPY_HW_NIC_CC3K
|
||||
#endif
|
||||
|
||||
// extra constants
|
||||
#define MICROPY_PORT_CONSTANTS \
|
||||
MACHINE_BUILTIN_MODULE_CONSTANTS \
|
||||
@@ -221,7 +214,6 @@ extern const struct _mod_network_nic_type_t mod_network_nic_type_cc3k;
|
||||
MICROPY_HW_NIC_ETH \
|
||||
MICROPY_HW_NIC_CYW43 \
|
||||
MICROPY_HW_NIC_WIZNET5K \
|
||||
MICROPY_HW_NIC_CC3K \
|
||||
MICROPY_BOARD_NETWORK_INTERFACES \
|
||||
|
||||
#define MP_STATE_PORT MP_STATE_VM
|
||||
|
||||
Reference in New Issue
Block a user