From: Tilman Sauerbeck Date: Sun, 7 Jul 2019 10:37:23 +0000 (+0200) Subject: bootloader: Use USB VID 0xf055 and PID 0x635c. X-Git-Url: http://git.code-monkey.de/?a=commitdiff_plain;h=b2a383c4ed0737f7e08711a430c961e572e64a66;p=gps-watch.git bootloader: Use USB VID 0xf055 and PID 0x635c. --- 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();