stm32/modnetwork: Don't take netif's down when network is deinited.

It should be up to the NIC itself to decide if the network interface is
removed upon soft reset.  Some NICs can keep the interface up over a soft
reset, which improves usability of the network.
pull/3831/head
Damien George 2018-06-01 13:27:06 +10:00
rodzic ea22406f76
commit 6d87aa54d6
1 zmienionych plików z 0 dodań i 6 usunięć

Wyświetl plik

@ -67,12 +67,6 @@ void mod_network_init(void) {
}
void mod_network_deinit(void) {
#if MICROPY_PY_LWIP
for (struct netif *netif = netif_list; netif != NULL; netif = netif->next) {
netif_remove(netif);
}
// TODO there may be some timeouts that are still pending...
#endif
}
void mod_network_register_nic(mp_obj_t nic) {