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().
This commit is contained in:
Damien George 2020-02-20 14:23:44 +11:00
parent 8db5d2d1f1
commit 44aa5b2200
1 changed files with 0 additions and 5 deletions

View File

@ -63,11 +63,6 @@ STATIC void pyb_lwip_poll(void) {
// Run the lwIP internal updates // Run the lwIP internal updates
sys_check_timeouts(); 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) { void mod_network_lwip_poll_wrapper(uint32_t ticks_ms) {