Skip to content

Commit f772fca

Browse files
authored
fix(boards): Remove duplicate VID/PID from boards.txt and add default CDC/JTAG board (espressif#9717)
* fix(boards): boards must define unique VID/PID 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 * fix(boards): Skip test for the generic board * Trigger board test * fix(boards): Make discovery work on IDE2
1 parent a4ee652 commit f772fca

File tree

2 files changed

+15
-146
lines changed

2 files changed

+15
-146
lines changed

Diff for: .github/scripts/find_new_boards.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ do
5454
break
5555
fi
5656
board_name=$(echo "$line" | cut -d '.' -f1 | cut -d '#' -f1)
57-
if [ "$board_name" != "" ]
57+
if [ "$board_name" != "" ] && [ "$board_name" != "esp32_family" ]
5858
then
5959
if [ "$board_name" != "$previous_board" ]
6060
then

0 commit comments

Comments
 (0)