From f8fe5c07e25597c1b69a9e273b794ba8f31875dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 11 Aug 2022 15:38:31 +0200 Subject: [PATCH] app: set project name in welcome --- application.c | 2 +- lib/usb_cdcacm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application.c b/application.c index 541b9f0..16eb5ea 100644 --- a/application.c +++ b/application.c @@ -378,7 +378,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 CuVoodoo STM32F4 example firmware\n"); // print welcome message + puts("\nwelcome to the CuVoodoo cap counter\n"); // print welcome message #if DEBUG // show reset cause diff --git a/lib/usb_cdcacm.c b/lib/usb_cdcacm.c index 88c7cbf..b69859b 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 STM32F4xx firmware", /**< product string */ + "CuVoodoo cap counter", /**< product string */ (const char*)usb_serial, /**< device ID used as serial number */ "DFU bootloader (runtime mode)", /**< DFU interface string */ };