Search found 6 matches

by rpoelvogels
Fri Oct 06, 2023 8:40 am
Forum: ESP-IDF
Topic: Can't get or set hostname on netif
Replies: 1
Views: 841

Can't get or set hostname on netif

Hi, I'm trying to set the hostname for the ethernet interface. But `esp_netif_set_hostname()` always returns `ESP_ERR_ESP_NETIF_IF_NOT_READY`. `esp_netif_get_hostname()` also always only returns `ESP_ERR_ESP_NETIF_IF_NOT_READY`. I've checked the source code of these functions and they look like: #if...
by rpoelvogels
Fri Apr 09, 2021 11:27 am
Forum: ESP-IDF
Topic: Signed app image validation fails
Replies: 0
Views: 1564

Signed app image validation fails

Hi, I enabled CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT in my project to have OTA updates validate the binary. I've added a private key file and enabled the sign during build option. The build system indicates that it performs signing operations after build using the correct key file. After building ...
by rpoelvogels
Tue Mar 09, 2021 11:50 am
Forum: ESP-IDF
Topic: Debugging custom ESP32-SOLO-1 board
Replies: 2
Views: 2554

Re: Debugging custom ESP32-SOLO-1 board

It turned out that the pre-programmed bootloader and partition table didn't run the application from 0x10000, but from 0x100000 (notice an additional '0'). Overwriting the bootloader and partition table with binaries from my compiled project solved the problems.
by rpoelvogels
Tue Mar 09, 2021 9:21 am
Forum: ESP-IDF
Topic: Debugging custom ESP32-SOLO-1 board
Replies: 2
Views: 2554

Debugging custom ESP32-SOLO-1 board

Hi all, I've designed a custom board using the ESP32-solo-1. I'm using JTAG (JLink) to flash and debug it (currently from command line, intent to switch to Eclipse when everything is working). I can flash it just fine with the following command: openocd -f interface/jlink.cfg -f target/esp32-solo-1....
by rpoelvogels
Tue Mar 09, 2021 8:21 am
Forum: ESP-IDF
Topic: ESP32 debug issue on custom board using J-Link
Replies: 9
Views: 8751

Re: ESP32 debug issue on custom board using J-Link

Hi, Error: JTAG scan chain interrogation failed: all ones This error usually means that other firmware on the ESP32 blocks the JTAG pins. Note that when you buy a fresh board it's usually flashed with AT firmware, which will indeed block the JTAG pins. You can prevent the AT firmware pin from runnin...
by rpoelvogels
Wed Jan 30, 2019 12:16 pm
Forum: Hardware
Topic: Auto download fails in virtual machines possibly due to USB lag
Replies: 9
Views: 10846

Re: Auto download fails in virtual machines possibly due to USB lag

You could also try changing the way the serial port is virtualized - many Virtual Machine programs can either virtualise the host's serial port (so the serial driver is in the host OS), or can virtualise the host's USB device (so the serial driver is in the guest OS). It's possible one of these com...