Skip to content

Commit f06f2d7

Browse files
authored
fix(boards): Correct typos in port prop. associations for "Bee" boards (#10276)
* 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. * 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.
1 parent 0b8eede commit f06f2d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: boards.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -34347,9 +34347,9 @@ department_of_alchemy_minimain_esp32s2.menu.EraseFlash.all.upload.erase_cmd=-e
3434734347

3434834348
Bee_Data_Logger.name=Bee Data Logger
3434934349
Bee_Data_Logger.vid.0=0x303a
34350-
Bee_Data_Logger.pid.0=815C
34350+
Bee_Data_Logger.pid.0=0x815C
3435134351
Bee_Data_Logger.upload_port.0.vid=0x303a
34352-
Bee_Data_Logger.upload_port.0.pid=815C
34352+
Bee_Data_Logger.upload_port.0.pid=0x815C
3435334353

3435434354
Bee_Data_Logger.bootloader.tool=esptool_py
3435534355
Bee_Data_Logger.bootloader.tool.default=esptool_py
@@ -34571,7 +34571,7 @@ Bee_Motion.name=Bee Motion
3457134571
Bee_Motion.vid.0=0x303a
3457234572
Bee_Motion.pid.0=0x810D
3457334573
Bee_Motion.vid.upload_port.0.vid=0x303a
34574-
Bee_Motion.pid.upload_port.0.vid=0x810D
34574+
Bee_Motion.pid.upload_port.0.pid=0x810D
3457534575

3457634576
Bee_Motion.bootloader.tool=esptool_py
3457734577
Bee_Motion.bootloader.tool.default=esptool_py
@@ -34790,7 +34790,7 @@ Bee_S3.name=Bee S3
3479034790
Bee_S3.vid.0=0x303a
3479134791
Bee_S3.pid.0=0x8110
3479234792
Bee_S3.vid.upload_port.0.vid=0x303a
34793-
Bee_S3.pid.upload_port.0.vid=0x8110
34793+
Bee_S3.pid.upload_port.0.pid=0x8110
3479434794

3479534795
Bee_S3.bootloader.tool=esptool_py
3479634796
Bee_S3.bootloader.tool.default=esptool_py

0 commit comments

Comments
 (0)