We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b94aa52 commit 5fd15b9Copy full SHA for 5fd15b9
libraries/lwIP_Ethernet/src/LwipEthernet.cpp
@@ -206,6 +206,7 @@ static uint32_t _pollingPeriod = 20;
206
// This will only be called under the protection of the async context mutex, so no re-entrancy checks needed
207
static void ethernet_timeout_reached(__unused async_context_t *context, __unused async_at_time_worker_t *worker) {
208
assert(worker == ðernet_timeout_worker);
209
+ printf("__ethernet_timeout_reached_calls %d\n",__ethernet_timeout_reached_calls);
210
__ethernet_timeout_reached_calls++;
211
ethernet_arch_lwip_gpio_mask(); // Ensure non-polled devices won't interrupt us
212
for (auto handlePacket : _handlePacketList) {
0 commit comments