From eaace28804effe222b4cfbdbb19dbf621f00ed84 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Mon, 29 Aug 2022 16:39:05 +0200 Subject: [PATCH] sys/usb: Set USB model to $(BOARD) by default --- sys/include/usb.h | 2 +- sys/usb/Kconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/include/usb.h b/sys/include/usb.h index de0f3f49e9..73d3599545 100644 --- a/sys/include/usb.h +++ b/sys/include/usb.h @@ -86,7 +86,7 @@ extern "C" { * @brief USB peripheral product string */ #ifndef CONFIG_USB_PRODUCT_STR -#define CONFIG_USB_PRODUCT_STR "USB device" +#define CONFIG_USB_PRODUCT_STR RIOT_BOARD #endif /** diff --git a/sys/usb/Kconfig b/sys/usb/Kconfig index b1a6301595..46205cab2b 100644 --- a/sys/usb/Kconfig +++ b/sys/usb/Kconfig @@ -62,7 +62,7 @@ config USB_MANUF_STR config USB_PRODUCT_STR string "Product string" - default "USB device" + default BOARD config USB_CONFIGURATION_STR string "Configuration string"