diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-21 10:45:42 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-21 10:45:42 +0000 |
commit | 8f89ec3c0bb6f4bc5a77afd37ebb3919181f7a4d (patch) | |
tree | 73e66c07f6c99ba3d914e1319e7d873ebaa78fbf /testhal/STM32/STM32F4xx/USB_CDC_IAD | |
parent | adcc51666865020347d364f7b3cad8a622124f7a (diff) | |
download | ChibiOS-8f89ec3c0bb6f4bc5a77afd37ebb3919181f7a4d.tar.gz ChibiOS-8f89ec3c0bb6f4bc5a77afd37ebb3919181f7a4d.tar.bz2 ChibiOS-8f89ec3c0bb6f4bc5a77afd37ebb3919181f7a4d.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8919 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F4xx/USB_CDC_IAD')
-rw-r--r-- | testhal/STM32/STM32F4xx/USB_CDC_IAD/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testhal/STM32/STM32F4xx/USB_CDC_IAD/main.c b/testhal/STM32/STM32F4xx/USB_CDC_IAD/main.c index 73751fb97..84c7ec3fc 100644 --- a/testhal/STM32/STM32F4xx/USB_CDC_IAD/main.c +++ b/testhal/STM32/STM32F4xx/USB_CDC_IAD/main.c @@ -164,13 +164,13 @@ int main(void) { /* Starting shells.*/
if (shelltp1 == NULL) {
shelltp1 = chThdCreateFromHeap(NULL, SHELL_WA_SIZE,
- NORMALPRIO + 1, shellThread,
- (void *)&shell_cfg1);
+ "shell1", NORMALPRIO + 1,
+ shellThread, (void *)&shell_cfg1);
}
if (shelltp2 == NULL) {
shelltp2 = chThdCreateFromHeap(NULL, SHELL_WA_SIZE,
- NORMALPRIO + 1, shellThread,
- (void *)&shell_cfg2);
+ "shell2", NORMALPRIO + 1,
+ shellThread, (void *)&shell_cfg2);
}
/* Waiting for an exit event then freeing terminated shells.*/
|