Skip to content

Commit 61564dc

Browse files
committed
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.
1 parent 0b8eede commit 61564dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

boards.txt

+2-2
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

0 commit comments

Comments
 (0)