kriegste

Results 23 comments of kriegste

Any news? I came across the exact same problem. Here it happens when updating the firmware OTA, during the flash being written. Which is exceptionally bad when trying to fix...

I'm going to force-inline those functions mentioned (called in the isr) and see and report what happens. Edit: The problem is in these files: components/hal/esp32*/include/hal/rmt_ll.h (one per chip type). I...

The issue is about to be fixed officially https://github.com/espressif/esp-idf/issues/9487

ANI is "Adaptive Noise Immunity", but I have no clue if the bug is in the chip or the driver. Fact is, the problem is gone. My router is in...

Uptime now 19 days, still no problems (v1). Before that fix I needed to reboot up to twice a day, depending on the load.

https://github.com/martin-ger/esp32_nat_router/issues/100 seems to be the same question.

Has anyone experimented with this? It works ok if I make sure only one connection is active at a time. If I hit F5 repeatedly, the web server hangs and...

You need to do something like this. float temperature = 22.5; int t = temperature*10; printf("temperature: %d.%d\n", t/10, t%10);

The one integrated in esp-open-sdk is the only one working here. I tried several 2.x, but those all fail with a timeout at 53% every time, both at slow and...

Have you tried leaving intr_type at default (no interrupt), then add the handler using gpio_isr_handler_add() before calling gpio_set_intr_type() at the end?