diff options
Diffstat (limited to 'demos/SPC5/RT-SPC560D-EVB/main.c')
-rw-r--r-- | demos/SPC5/RT-SPC560D-EVB/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/SPC5/RT-SPC560D-EVB/main.c b/demos/SPC5/RT-SPC560D-EVB/main.c index 5b5d89d44..3f5e7e2c8 100644 --- a/demos/SPC5/RT-SPC560D-EVB/main.c +++ b/demos/SPC5/RT-SPC560D-EVB/main.c @@ -136,8 +136,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);
|