Fix stack overflow message format

Poorly formatted message for stack overflow for task. Closes #36
This commit is contained in:
rudi ;-) 2016-10-02 02:04:09 +02:00 committed by Angus Gratton
parent a20c2f1088
commit 71c09d8f66

View file

@ -79,9 +79,9 @@ inline static void panicPutDec(int a) { }
int xPortGetCoreID();
void __attribute__((weak)) vApplicationStackOverflowHook( TaskHandle_t xTask, signed char *pcTaskName ) {
panicPutStr("***ERROR*** A stack overflow in task");
panicPutStr("***ERROR*** A stack overflow in task ");
panicPutStr((char*)pcTaskName);
panicPutStr("has been detected.\r\n");
panicPutStr(" has been detected.\r\n");
}
static const char *edesc[]={