Jaremy Creechley
Jaremy Creechley
It seems like the old `options` will stick around. Could a new module possibly resolve the nil issue and provide a result type? I sorta liked what @arnetheduck mentioned https://github.com/nim-lang/Nim/pull/18401#issuecomment-1119496738...
> We do have a completely different swap strategy that is under development that is intended for devices where the writes are larger (and typically use ECC), however this more...
This seems related to [841: Boot: Introduce new swap method using status partition](https://github.com/mcu-tools/mcuboot/pull/841), especially for chips with ECC based flash?
Thanks for the ping. I'll get Nephyr fixed up.
The `esp-lib` has given me lots of headaches with I2C. It looks like you have `sda_pullup_en` and `scl_pullup_en` disabled. NVM, you said you tried out different configurations. There's a few...
I haven't tried the Nim SSL wrappers. As you mention, they dynamically load openssl which isn't supported on the ESP32's. However, ESP32's do provide SSL in the ESP-IDF directly in...
Thanks for following the above. It looks like the esp 4.1+ library uses a custom `esp_ip4_addr_t` type. I've moved away from Nesper/esp-idf for Zephyr so I haven't followed up on...
That last error is a bit odd. There's a few possibilities. ``` debugEcho "DEBUG: \tCrafting result..." var nb = buff[0..
Also you may need to check and handle the case where `bytes_read == 0`. That could cause a Nim exception.
Not sure, I've only used `xTaskCreate` on FreeRTOS/esp-idf. The pthread integration might work, but requires the `esp-idf` pthread emulation layer to be enabled.