From 90ec47d49a4e06c3c9105a4391927a51ed7cfdb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 11 Aug 2022 14:42:15 +0200 Subject: [PATCH] app: adjust project name welcome text --- application.c | 2 +- lib/usb_cdcacm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 */ };