Fix stack overflow message format

Poorly formatted message for stack overflow for task. Closes #36
pull/37/merge
rudi ;-) 2016-10-02 02:04:09 +02:00 zatwierdzone przez Angus Gratton
rodzic a20c2f1088
commit 71c09d8f66
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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[]={