application: set project name

This commit is contained in:
King Kévin 2021-03-24 00:10:18 +01:00
parent b3cf0d0302
commit 370c7960fb
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
/** STM32F4 application example
/** input/output pin identifier
* @file
* @author King Kévin <kingkevin@cuvoodoo.info>
* @copyright SPDX-License-Identifier: GPL-3.0-or-later
* @date 2016-2020
* @date 2016-2021
*/
/* standard libraries */
@ -374,7 +374,7 @@ void main(void)
board_setup(); // setup board
uart_setup(); // setup USART (for printing)
usb_cdcacm_setup(); // setup USB CDC ACM (for printing)
puts("\nwelcome to the CuVoodoo STM32F4 example firmware\n"); // print welcome message
puts("\nwelcome to the CuVoodoo I/O finder\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 STM32F4xx firmware", /**< product string */
"CuVoodoo I/O finder", /**< product string */
(const char*)usb_serial, /**< device ID used as serial number */
"DFU bootloader (runtime mode)", /**< DFU interface string */
};