HAL_ChibiOS: switch non-composite USB ID

use newly allocated 0x1209/0x5740
This commit is contained in:
Andrew Tridgell 2020-01-06 10:16:59 +11:00
parent f7ddcb1944
commit 64557413b8
1 changed files with 2 additions and 2 deletions

View File

@ -737,8 +737,8 @@ def get_USB_IDs():
default_vid = 0x1209
default_pid = 0x5740
else:
default_vid = 0x0483
default_pid = 0x5740
default_vid = 0x1209
default_pid = 0x5741
return (get_config('USB_VENDOR', type=int, default=default_vid), get_config('USB_PRODUCT', type=int, default=default_pid))