Search found 5 matches

by ESP_User1563
Fri Jan 14, 2022 4:21 am
Forum: ESP-IDF
Topic: Turn OFF WiFi on ESP32 with esp-idf
Replies: 4
Views: 34359

Re: Turn OFF WiFi on ESP32 with esp-idf

Both of the following are used to start and stop the wifi in ESP examples. Look for the start in your code somewhere that is starting it and comment it out or use the stop command when you want to stop it.


esp_err_t results = esp_wifi_start();
esp_err_t results = esp_wifi_stop();
by ESP_User1563
Fri Jan 14, 2022 4:12 am
Forum: Hardware
Topic: esp-serial-flasher
Replies: 0
Views: 2940

esp-serial-flasher

I have ported esp-serial-flasher to my host micro. My software on the ESP is based on the restful_server example vue web page. I can successfully flash the application and have it work. When I attempt to flash the www.bin to update the web page, the system continually reboots. I double checked the a...
by ESP_User1563
Fri Feb 19, 2021 11:24 pm
Forum: General Discussion
Topic: Debugging in Eclipse on Windows
Replies: 1
Views: 2402

Debugging in Eclipse on Windows

Is there any guide to be able to download and debug an example program using either a JLINK or ESPRESSIF ESP-Prog board to an ESP32 DevkitC V4 dev board? The Eclipse with the ESP-IDF integration is one of the two supported IDEs - the other being VS Code. I have eclipse building and downloading using...
by ESP_User1563
Wed Feb 10, 2021 4:50 am
Forum: ESP-IDF
Topic: JLINK with Eclipse
Replies: 2
Views: 2673

Re: JLINK with Eclipse

Thank you for your response Scott. Do you remember what you had to do to configure Eclipse to start working? Did you simply need to change the configuration in the debug profile to point to different scripts or something more elaborate? The ESP-IDF tools installer installed version V0.10-0-esp32-202...
by ESP_User1563
Tue Feb 09, 2021 3:29 pm
Forum: ESP-IDF
Topic: JLINK with Eclipse
Replies: 2
Views: 2673

JLINK with Eclipse

Hello, Are there any guides to get a JLINK to work with Eclipse to program and debug a ESP32 Devkit C? I see guides to use the built in hardware debugger on a dev board but not for a user created board or something like the Devkit C that does not have a debugger. JLINK is a good debugger but if ther...