From 8b9b26d3ff247c55c8c0efa506de13c3d222a6ef Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 1 Sep 2024 07:13:40 -0700 Subject: [PATCH 1/2] fix(boards): Correct PID port property in "Bee Data Logger" board def VID and PID port property values are hexadecimal literals and thus use the standard "0x" prefix. Previously, this prefix was missing from the PID port property association in the definition of the board definition of "Bee Data Logger" board. This typo caused ports having the 0x303a, 0x815C VID/PID pair to not be identified as a "Bee Data Logger" board as intended. --- boards.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards.txt b/boards.txt index 6ac1a2cae20..29785eb5937 100644 --- a/boards.txt +++ b/boards.txt @@ -34347,9 +34347,9 @@ department_of_alchemy_minimain_esp32s2.menu.EraseFlash.all.upload.erase_cmd=-e Bee_Data_Logger.name=Bee Data Logger Bee_Data_Logger.vid.0=0x303a -Bee_Data_Logger.pid.0=815C +Bee_Data_Logger.pid.0=0x815C Bee_Data_Logger.upload_port.0.vid=0x303a -Bee_Data_Logger.upload_port.0.pid=815C +Bee_Data_Logger.upload_port.0.pid=0x815C Bee_Data_Logger.bootloader.tool=esptool_py Bee_Data_Logger.bootloader.tool.default=esptool_py From 87ad6e919f5e058625b96ba515adec1ee2466136 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 1 Sep 2024 07:20:24 -0700 Subject: [PATCH 2/2] fix(boards): Correct property names for PID port property associations These properties are intended to associate values of the PID port property with "Bee" board definitions. A typo caused them to instead associatiate the values with the VID port property. The result was that ports with this VID/PID pair were not identified by the Arduino development software as the board model as intended. --- boards.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards.txt b/boards.txt index 29785eb5937..9c038071509 100644 --- a/boards.txt +++ b/boards.txt @@ -34571,7 +34571,7 @@ Bee_Motion.name=Bee Motion Bee_Motion.vid.0=0x303a Bee_Motion.pid.0=0x810D Bee_Motion.vid.upload_port.0.vid=0x303a -Bee_Motion.pid.upload_port.0.vid=0x810D +Bee_Motion.pid.upload_port.0.pid=0x810D Bee_Motion.bootloader.tool=esptool_py Bee_Motion.bootloader.tool.default=esptool_py @@ -34790,7 +34790,7 @@ Bee_S3.name=Bee S3 Bee_S3.vid.0=0x303a Bee_S3.pid.0=0x8110 Bee_S3.vid.upload_port.0.vid=0x303a -Bee_S3.pid.upload_port.0.vid=0x8110 +Bee_S3.pid.upload_port.0.pid=0x8110 Bee_S3.bootloader.tool=esptool_py Bee_S3.bootloader.tool.default=esptool_py