diff --git a/application.c b/application.c index 5676ebd..dafe8a8 100644 --- a/application.c +++ b/application.c @@ -861,7 +861,7 @@ void main(void) usb_cdcacm_setup(); // setup USB CDC ACM (for printing) OTG_FS_GCCFG |= OTG_GCCFG_NOVBUSSENS | OTG_GCCFG_PWRDWN; // disable VBUS sensing OTG_FS_GCCFG &= ~(OTG_GCCFG_VBUSBSEN | OTG_GCCFG_VBUSASEN); // force USB device mode - puts("\nwelcome to the World Clock controller\n"); // print welcome message + puts("\nwelcome to the Bahn Uhr controller\n"); // print welcome message #if DEBUG // show reset cause diff --git a/lib/usb_cdcacm.c b/lib/usb_cdcacm.c index 1b1ee02..efd9138 100644 --- a/lib/usb_cdcacm.c +++ b/lib/usb_cdcacm.c @@ -229,7 +229,7 @@ static char usb_serial[] = "0123456789ab"; */ static const char* usb_strings[] = { "CuVoodoo", /**< manufacturer string */ - "CuVoodoo bahn clock controller", /**< product string */ + "CuVoodoo Bahn Uhr controller", /**< product string */ (const char*)usb_serial, /**< device ID used as serial number */ "DFU bootloader (runtime mode)", /**< DFU interface string */ };