From d681d9de98affaf283d4c7d032743415ecf61af2 Mon Sep 17 00:00:00 2001 From: schneider <schneider@blinkenlichts.net> Date: Sat, 27 Jul 2019 00:00:25 +0200 Subject: [PATCH] feat(bootloader): Show up as CCC card10 --- bootloader/bootloader-usb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootloader/bootloader-usb.c b/bootloader/bootloader-usb.c index 9ee893e2..2ba7d32d 100644 --- a/bootloader/bootloader-usb.c +++ b/bootloader/bootloader-usb.c @@ -82,9 +82,9 @@ static const msc_cfg_t msc_cfg = { }; static const msc_idstrings_t ids = { - "MAXIM", /* Vendor string. Maximum of 8 bytes */ - "MSC Example", /* Product string. Maximum of 16 bytes */ - "1.0" /* Version string. Maximum of 4 bytes */ + "CCC", /* Vendor string. Maximum of 8 bytes */ + "card10", /* Product string. Maximum of 16 bytes */ + "1.0" /* Version string. Maximum of 4 bytes */ }; /* Functions to control "disk" memory. See msc.h for definitions. */ -- GitLab