If you are trying to update, I assume the script also needs write and modify permissions on some files.
Have you tried just running the update command from an admin command prompt window?
Search found 8 matches
- Tue Oct 18, 2022 9:36 pm
- Forum: ESP-IDF
- Topic: Error updating ESP-IDF extension (from VSCode)
- Replies: 2
- Views: 1940
- Tue Oct 18, 2022 9:32 pm
- Forum: ESP-IDF
- Topic: ESP communication with UHF Reader over TCP IP
- Replies: 2
- Views: 1508
Re: ESP communication with UHF Reader over TCP IP
Hi iottata, That "reader" looks like a point to point wireless bridge of some kind with some extra features like also having a bridge for an RS232 serial link. Assuming you are using the ethernet functionality of the reader device, what are you trying to connect to on the other end of the link? I th...
- Mon Sep 26, 2022 6:10 pm
- Forum: IDEs for ESP-IDF
- Topic: Eclipse Debugging: Step OVER mostly steps INTO function
- Replies: 2
- Views: 3900
Re: Eclipse Debugging: Step OVER mostly steps INTO function
Hi Supino, This sounds like the way the debugger behaves when it is out of breakpoints. On most of the ESP32 processors, there are only 2 hardware breakpoints available. When the debugger steps over code, what actually happens behind the scenes is a temporary breakpoint is set on the next line of co...
- Mon Sep 19, 2022 7:01 pm
- Forum: IDEs for ESP-IDF
- Topic: VSCode - IDF Extension 1.5 broke JTAG flashing for ESP32S3
- Replies: 5
- Views: 4862
Re: VSCode - IDF Extension 1.5 broke JTAG flashing for ESP32S3
I think I found the problem. The issue was an older version of openOCD in the paths variables idf.customExtraPaths and idf.customExtraVars in settings.json. Installing the new SDK had installed a new version of openOCD but several old versions were still installed. The path variables pointed to the ...
- Tue Sep 13, 2022 7:52 pm
- Forum: IDEs for ESP-IDF
- Topic: VSCode - IDF Extension 1.5 broke JTAG flashing for ESP32S3
- Replies: 5
- Views: 4862
Re: VSCode - IDF Extension 1.5 broke JTAG flashing for ESP32S3
I can confirm this is not just your issue. It happened at a number of our workstations at lab and on my home machine. I reverted back to previous version of extension now other things are breaking. Still looking into this.. It's good to know I'm not the only one who has seen this problem. For the r...
- Wed Aug 31, 2022 7:39 pm
- Forum: IDEs for ESP-IDF
- Topic: FreeRTOS Task Aware Debugger?
- Replies: 8
- Views: 19025
- Tue Aug 23, 2022 9:41 pm
- Forum: ESP-IDF
- Topic: Is there a way to have ESP32 send its logs to a web server?
- Replies: 6
- Views: 28238
Re: Is there a way to have ESP32 send its logs to a web server?
I used the MQTT client to send log prints to a broker on the network. It works very well and can handle a ridiculous number of prints per second. I used the mqtt_event_handler callback event MQTT_EVENT_CONNECTED to register a new log vprintf function. Here's how I did it. To get the log output, just...
- Tue Aug 23, 2022 8:44 pm
- Forum: IDEs for ESP-IDF
- Topic: VSCode - IDF Extension 1.5 broke JTAG flashing for ESP32S3
- Replies: 5
- Views: 4862
VSCode - IDF Extension 1.5 broke JTAG flashing for ESP32S3
I am using a STM32S3-WROOM-2 module (with the octal flash and psram) and connecting using the built-in USB JTAG (and the associated virtual com port). My VSCode IDF plugin was automatically updated to version 1.5 a couple days ago and the JTAG flashing stopped working. When you click the flash devic...