Search found 26 matches

by kluverp
Tue Aug 28, 2018 5:49 am
Forum: ESP-IDF
Topic: esp_wifi.h questions
Replies: 4
Views: 8674

Re: esp_wifi.h questions

Thank you!
This helps a lot.

Is there any reason for the WiFi code not being available to the SDK developer?
by kluverp
Mon Aug 27, 2018 12:13 pm
Forum: ESP-IDF
Topic: esp_wifi.h questions
Replies: 4
Views: 8674

esp_wifi.h questions

Hi all, I have some questions regarding the functions inside the "esp_wifi.h" file. 1) Where can I locate the source code these functions are declared in? In other words: where can I find the function bodies? I want to see what goes on inside these functions. But I cannot find them inside the IDF. M...
by kluverp
Thu Jul 26, 2018 5:35 am
Forum: ESP-IDF
Topic: Standard logger in combination with UART
Replies: 1
Views: 2964

Re: Standard logger in combination with UART

I found the problem:

The Serial monitor uses UART0 to output to screen.
In my codebase I found that when the UART for the display was initialized, it was done on UART1, BUT with the same GPIO pins as are used by UART0.

Thus causing the Serial monitor to cease to function. Silly mistake.
by kluverp
Tue Jun 19, 2018 8:32 am
Forum: ESP-IDF
Topic: Logging reboots
Replies: 2
Views: 5241

Re: Logging reboots

Thanks,
I will look into this!
by kluverp
Mon Jun 18, 2018 12:07 pm
Forum: ESP-IDF
Topic: Standard logger in combination with UART
Replies: 1
Views: 2964

Standard logger in combination with UART

Hi All, I have a display connected to the UART of the ESP32. All works well, but I noticed when I call: uart_set_pin(UART_NUM_1, ECHO_TEST_TXD, ECHO_TEST_RXD, ECHO_TEST_RTS, ECHO_TEST_CTS); The default logging macros like "ESP_LOGI()" no longer output any data to the serial console. I only see the d...
by kluverp
Mon Jun 18, 2018 7:14 am
Forum: ESP-IDF
Topic: Logging reboots
Replies: 2
Views: 5241

Logging reboots

Hi All, I have in the field multiple ESP32 devices running. These devices measure some stuff, and report back the values every 10 seconds. Now I have notices sometimes these device lose internet connection, or reboot after days of operation. Now my question is: is there some way of logging these reb...