aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F3xx/USB_CDC/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32/STM32F3xx/USB_CDC/main.c')
-rw-r--r--testhal/STM32/STM32F3xx/USB_CDC/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32/STM32F3xx/USB_CDC/main.c b/testhal/STM32/STM32F3xx/USB_CDC/main.c
index 11bb6bf5c..76e1c64bb 100644
--- a/testhal/STM32/STM32F3xx/USB_CDC/main.c
+++ b/testhal/STM32/STM32F3xx/USB_CDC/main.c
@@ -159,8 +159,8 @@ int main(void) {
while (true) {
if (SDU1.config->usbp->state == USB_ACTIVE) {
thread_t *shelltp = chThdCreateFromHeap(NULL, SHELL_WA_SIZE,
- NORMALPRIO + 1, shellThread,
- (void *)&shell_cfg1);
+ "shell", NORMALPRIO + 1,
+ shellThread, (void *)&shell_cfg1);
chThdWait(shelltp); /* Waiting termination. */
chThdFreeToHeap(shelltp); /* Returning memory to heap. */
}