Dario Nieuwenhuis

Results 491 comments of Dario Nieuwenhuis

this can happen if your network device can queue a maximum amount of frames in the rx or tx queues, and drops excess frames instead of buffering them or telling...

> First, how I can tell smoltcp to slow down? Device transmit only returns Option. Does returning None from it suffice? yes. if the phy can't transmit right now, return...

use unsafe to get access to the registerblock. ```rust unsafe { &*embassy_nrf::pac::RESET::PTR }.network.forceoff.write(...); ``` > I found the generated PAC types, but not how to access them as they are...

> I'm still a bit confused though, why then e.g. SERIAL0 or NVMC are available in Peripherals ? they are, but they're defined by the HAL, they're not the PAC...

"SERIAL" is a peripheral that can do UART, SPI or TWI (i2c), master or slave, so it's usable with all 5 drivers: https://github.com/embassy-rs/embassy/blob/main/embassy-nrf/src/chips/nrf5340_app.rs#L395-L418 . It's a bit confusing because Nordic...

embassy-net-ppp only does the "PPP" part, not the "AT command" part. You can use it with a modem but you have to do the AT commands yourself. Run the AT...

bender run (flaky network issue...)