From b2a383c4ed0737f7e08711a430c961e572e64a66 Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Sun, 7 Jul 2019 12:37:23 +0200 Subject: [PATCH] bootloader: Use USB VID 0xf055 and PID 0x635c. --- src/bootloader/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootloader/main.rs b/src/bootloader/main.rs index 88a9a0b..83ef011 100644 --- a/src/bootloader/main.rs +++ b/src/bootloader/main.rs @@ -44,7 +44,7 @@ pub unsafe extern fn main() { clock::configure(); if true { - usb_serial::init(0x1fc9, 0x0094); + usb_serial::init(0xf055, 0x635c); let mut b = bootloader::Bootloader::new(); -- 2.30.2