stm32/modnetwork: Remove redundant call to nimble_poll in lwip poll.

The bluetooth stack has its own dedicated polling function, see
mod_bluetooth_nimble_poll_wrapper().
pull/5672/head
Damien George 2020-02-20 14:23:44 +11:00
rodzic 8db5d2d1f1
commit 44aa5b2200
1 zmienionych plików z 0 dodań i 5 usunięć

Wyświetl plik

@ -63,11 +63,6 @@ STATIC void pyb_lwip_poll(void) {
// Run the lwIP internal updates
sys_check_timeouts();
#if MICROPY_BLUETOOTH_NIMBLE
extern void nimble_poll(void);
nimble_poll();
#endif
}
void mod_network_lwip_poll_wrapper(uint32_t ticks_ms) {