-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(boards): Remove duplicate VID/PID from boards.txt and add default CDC/JTAG board #9717
Conversation
Also adds a hidden board with the default VID/PID of USB CDC/JTAG in order to always show that in IDE when ESP32 CDC/JTAG device is connected
👋 Hello me-no-dev, we appreciate your contribution to this project! Click to see more instructions ...
Review and merge process you can expect ...
|
@P-R-O-C-H-Y we need to enforce that this VID/PID combo is not added to other boards |
Memory usage test (comparing PR against master branch)The table below shows the summary of memory usage change (decrease - increase) in bytes and percentage for each target.
Click to expand the detailed deltas report [usage change in BYTES]
|
@@ -38,6 +38,8 @@ esp32_family.name=ESP32 Family Device | |||
esp32_family.hide=true | |||
esp32_family.vid.0=0x303a | |||
esp32_family.pid.0=0x1001 | |||
esp32_family.upload_port.0.vid=0x303a | |||
esp32_family.upload_port.0.pid=0x1001 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ladyada in order for discovery to work properly with IDE2 and CLI, it is necessary to add the .upload_port
lines. Maybe someone there can update your board definitions?
cc: @UnexpectedMaker
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks
@hathach can you add to your ToDo list :)
@me-no-dev is there a date you need this by?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ladyada we plan on pushing bugfix releases fairly often, so it's not a hurry.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ladyada sure, I will follow this up
Hey @me-no-dev - Thanks for pinging me as well... So you mean we need to add this to each of our boards, using the same PID/VID as the board?
|
Yes. First two lines are for IDE1 and second lines are for IDE2 and CLI |
Wicked, thanks, doing a PR now :) |
Adds a hidden board with the default VID/PID of USB CDC/JTAG in order to always show that in IDE when ESP32 CDC/JTAG device is connected and removes all other mentions of that VID/PID