aboutsummaryrefslogtreecommitdiffstats
path: root/demos/SPC5/RT-SPC564A-EVB/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/SPC5/RT-SPC564A-EVB/main.c')
-rw-r--r--demos/SPC5/RT-SPC564A-EVB/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/SPC5/RT-SPC564A-EVB/main.c b/demos/SPC5/RT-SPC564A-EVB/main.c
index 866212741..a273a25e6 100644
--- a/demos/SPC5/RT-SPC564A-EVB/main.c
+++ b/demos/SPC5/RT-SPC564A-EVB/main.c
@@ -119,8 +119,8 @@ int main(void) {
*/
while (true) {
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. */
chThdSleepMilliseconds(1000);