ivmarkov
ivmarkov
> > Using an activated ESP IDF is possible, but is an **advanced** setting. If you are coming from the ESP IDF C world, no prob - you are an...
You are confusing esp idfs `export.sh` script with the unfortunately similarly named `export-esp.sh` script which is not even necessary on anything but Windows.
> the "export-esp.sh" here is not the same "export.sh" from esp-idf and is used for espup specifics around the xtensa rust toolchain. > > In other words it exports this...
> > @SergioGasquez I have an even better proposal: how about we just link - from the STD book - to the README.md of `esp-idf-template` itself? It has detailed installation...
- What ESP-IDF versions and crates' version? - Does it work if you comment out `wait_netif_up` and then just try to ping the gateway?
I think that might explain it.... We don't receive the `ETH_IP_UP` event so the waiting (which is driven by the system event loop) waits until timeout. I suggest we keep...
In svc "0.49" we still have [this buggy code](https://github.com/esp-rs/esp-idf-svc/blob/v0.49.1/src/netif.rs#L251). In other words, we might be waiting on the wrong event ID. In latest `master`, the code is [correctly waiting on...
Unfortunately I haven't played with these modems yet, so below my very limited understanding: * First of all, you need to talk to the modem via some peripheral. Most often...
Oh. One more thing but maybe important - given that ALL communication with the modem is basically over a UART channel (sending and receiving bytes of data) - is there...
[Interesting](https://github.com/embassy-rs/embassy/issues/3096#issuecomment-2178339817). And sounds rather simple.