app: adjust project name welcome text

This commit is contained in:
King Kévin 2022-08-11 14:42:15 +02:00
parent 776569d7c1
commit 90ec47d49a
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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 */
};