Search found 95 matches
- Fri May 27, 2022 3:56 pm
- Forum: IDEs for ESP-IDF
- Topic: Can't program the ESP32 with VSCode
- Replies: 5
- Views: 6328
Re: Can't program the ESP32 with VSCode
Hi ESP_Sprite, The 10uF capacitor seems to work, my question is why does this happen? When I use the desktop computer the device is programmed without problem, but when using the laptop a 10uF capacitor is needed? Should I always use this 10uF cap? for example in a custom design, I already use a 0.1...
- Thu May 26, 2022 3:17 pm
- Forum: IDEs for ESP-IDF
- Topic: Can't program the ESP32 with VSCode
- Replies: 5
- Views: 6328
Re: Can't program the ESP32 with VSCode
Yes I can, here is a picture of it running: Screenshot 2022-05-26 120644.png I'm also sure COM3 is the correct port since is the only port installed/detected: Screenshot 2022-05-26 120855.png And nothing else is running 'idf.py monitor' therefore blocking the programming process, any idea what is ha...
- Wed May 25, 2022 6:27 pm
- Forum: IDEs for ESP-IDF
- Topic: Can't program the ESP32 with VSCode
- Replies: 5
- Views: 6328
Can't program the ESP32 with VSCode
Hi, I'm using VSCode to compile and program a custom ESP32 device and I'm not able to program it. Here is the thing, using VSCode on my Linux Desktop PC I can program, monitor and debug the device with no problem at all BUT when I tried compiling and programming with my Windows Laptop (also using VS...
- Mon Mar 21, 2022 1:17 pm
- Forum: ESP-IDF
- Topic: Access to ESP WEB SERVER through VPN crash HTTP server
- Replies: 1
- Views: 2686
Re: Access to ESP WEB SERVER through VPN crash HTTP server
Hi Elliot,
Did you manage to connect the ESP32 (or ESP8266) to a VPN network? I'm intrested on doing so but I not sure where to start.
Best regards,
P
Did you manage to connect the ESP32 (or ESP8266) to a VPN network? I'm intrested on doing so but I not sure where to start.
Best regards,
P
- Wed Jan 19, 2022 3:44 pm
- Forum: ESP-IDF
- Topic: Reset the ULP after OTA update
- Replies: 3
- Views: 5037
Re: Reset the ULP after OTA update
Hi boarchuz, How would you do an RTC reset? from what I understand thats possible when hitting the EN pin or by disconnecting the module supply, any of them are possible in my project. My idea is to do some OTA update without physically going to the place and "reset" it so the ULP would work. Regard...
- Tue Jan 18, 2022 9:33 pm
- Forum: ESP-IDF
- Topic: Reset the ULP after OTA update
- Replies: 3
- Views: 5037
Reset the ULP after OTA update
Hi, I'm using an ESP WROVER module ULP to count pulses and I realized that after performing an OTA update the ULP seems to do nothing, the ULP program changes in this update. After looking in some posts, it looks that the ULP ends in an undetermined state after a esp_reset(); command. Is any way to ...
- Tue Dec 14, 2021 9:11 pm
- Forum: ESP-IDF
- Topic: OTA update with different partition tables
- Replies: 1
- Views: 2786
OTA update with different partition tables
Hi, I'm trying to OTA update an ESP-WROVER module and I found that my previous version of the partition table has different values than the one I'm using now. How can I update this with OTA? Here is the old partition table: nvs, data, nvs, , 320K, savdat, data, nvs, , 1000K, otadata, data, ota, , 8K...
- Tue Nov 16, 2021 2:14 pm
- Forum: ESP-IDF
- Topic: eth2ap not able to connect to internet
- Replies: 2
- Views: 4600
Re: eth2ap not able to connect to internet
Hi NorbertoNorbs, It was as you said, I was attaching things to TCP/IP stack but I only wanted MAC layer things done. Here is the code I ended up with: #include <stdio.h> #include <string.h> #include <stdlib.h> #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/queue.h" #in...
- Tue Nov 09, 2021 2:35 pm
- Forum: ESP-IDF
- Topic: xQueueSemaphoreTake unknown abort()
- Replies: 4
- Views: 5284
Re: xQueueSemaphoreTake unknown abort()
UPDATE: I tried commenting the problematic lines (1416 and 1411 in mqtt_client.c) in the IDF source code, and the problem still persist in the ' platform_tick_get_ms(); ' function, which at some point tries to get a semaphore that fails to. On the other hand, It is not a flash memory corruption. It ...
- Tue Nov 09, 2021 3:22 am
- Forum: ESP-IDF
- Topic: xQueueSemaphoreTake unknown abort()
- Replies: 4
- Views: 5284
Re: xQueueSemaphoreTake unknown abort()
That's not possible, I barely have the device for a month and this also happens with another device I have. Memory corruption seems a little too soon for it. I was wondering about IRAM functions, if that could have something to do, since the 'lock_aquire' function that fails is in it. And That's als...