Search found 7 matches

by Siddle34
Wed Aug 14, 2024 11:24 pm
Forum: General Discussion
Topic: Confusing DHCP-related Linux and Windows issues / differences
Replies: 1
Views: 736

Confusing DHCP-related Linux and Windows issues / differences

I have two (possibly related) questions: 1) In the ESP-IDF /examples/sta2eth code, I must ensure that I `#define MODIFY_DHCP_MSGS 1` at the beginning of /main/ethernet_iface.c. If I don't do this, my target ESP32's (or ESP32s3's) eth0 interface will not be assigned an IPv4 address, and I will not be...
by Siddle34
Tue Jul 30, 2024 9:51 pm
Forum: General Discussion
Topic: Installing several different versions of ESP-IDF in VS Code - particularly the tools!
Replies: 5
Views: 1317

Re: Installing several different versions of ESP-IDF in VS Code - particularly the tools!

Thanks. Sounds sensible. I suspect I'll have to see how often the tools break. I've noticed it's not too bad with the main frameworks (the ESP-IDF frameworks), but I've been struggling to build examples from the likes of https://github.com/espressif/esp-iot-bridge and https://github.com/espressif/es...
by Siddle34
Tue Jul 30, 2024 9:13 am
Forum: General Discussion
Topic: Installing several different versions of ESP-IDF in VS Code - particularly the tools!
Replies: 5
Views: 1317

Installing several different versions of ESP-IDF in VS Code - particularly the tools!

Hello, I am trying to install several different versions of the ESP-IDF framework in the VS Code IDE. This seems fairly trivial. I am installing them in different directories, naturally. However, after each ESP-IDF framework download, I am asked whether I want to install the corresponding toolsets t...
by Siddle34
Thu Jul 25, 2024 12:43 pm
Forum: General Discussion
Topic: Almost there with network/sta2eth example, but DNS issue? (ESP-IDF v5.2.2)
Replies: 0
Views: 535

Almost there with network/sta2eth example, but DNS issue? (ESP-IDF v5.2.2)

Hi there all, Well I've been at this a few days and it's been endless frustration! However, I think I'm gradually ironing out the issues. I believe I have identified the problem area (I hope, anyway). For reference, I should mention that I am using VS Code as my IDE with the official ESP-IDF extensi...
by Siddle34
Fri Jul 05, 2024 7:38 am
Forum: General Discussion
Topic: ESP32 UART buffering of received data
Replies: 2
Views: 880

Re: ESP32 UART buffering of received data

Thank you Mr MicroController! You have cleared up some fundamental things for me.
by Siddle34
Mon Jul 01, 2024 4:43 am
Forum: General Discussion
Topic: ESP32 UART buffering of received data
Replies: 2
Views: 880

ESP32 UART buffering of received data

If we look in uart.c, which I think I'm correct in saying lives in the ESP-IDF API layer underlying the Arduino-esp32 API, we find functions like: esp_err_t uart_get_buffered_data_len(uart_port_t uart_num, size_t *size) { ESP_RETURN_ON_FALSE((uart_num < UART_NUM_MAX), ESP_FAIL, UART_TAG, "uart_num e...