No Stub option added to esptool Visual Studio Code extension #19642
DavesCodeMusings
started this conversation in
Show and tell
Replies: 2 comments 3 replies
|
I do not see any relevance of your apparent distaste for a specific OS to this post's topic as it seems to offer a specific workaround for an (likely intentional) omission in another OS. |
2 replies
|
@DavesCodeMusings it's of course up to you how you choose to develop this extension, but out of curiosity: could you install esptool as part of the extension itself? That way you'd solve this kind of problem, but also avoid problems with version incompatibilities between whatever esptool version is installed on the host and the version that the extension is expecting to interact with. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
If you happen to use the ESPTool Visual Studio Code extension for point-and-click erasing, flashing, etc. of your ESP32 devices from within VS Code, there is a new option in the latest release.
In the extension's configuration you will now find a checkbox for using --no-stub with all esptool commands run by the extension (e.g.
python3 -m esptool --no-stub chip-id).This works around a problem with Debian-based Linux systems that lack the proper stub files for ESP devices. Probably won't make any difference on Windoze systems.
If you don't see the checkbox option right away after updating the extension, restart your VS Code and look again.
All reactions