1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 14:25:14 +03:00

Artery AT32F435/7 DFU and VCP support (#3259)

* Add Artery AT32F435/7 Virtual COM Port support

* ADD ARTRY AT32 DFU support

* remove wrong comment
This commit is contained in:
EMSR 2023-01-29 09:18:26 +08:00 committed by GitHub
parent 1cfdcd833d
commit da3596bb06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 1 deletions

View file

@ -11,6 +11,7 @@ const TIMEOUT_CHECK = 500 ; // With 250 it seems that it produces a memory leak
export const usbDevices = { filters: [
{'vendorId': 1155, 'productId': 57105}, // STM Device in DFU Mode || Digital Radio in USB mode
{'vendorId': 10473, 'productId': 393}, // GD32 DFU Bootloader
{'vendorId': 0x2E3C, 'productId': 0xDF11}, // AT32F435 DFU Bootloader
] };
const PortHandler = new function () {