Skip to content

Commit 04b1e7a

Browse files
committed
sys: fix debug string
1 parent 0b9b2e2 commit 04b1e7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sys.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ static void sSysTask(void *pArg);
2626

2727
void sysInit(void)
2828
{
29-
DEBUG("sys: init (stack %"PRIu16", mon %"PRIu16", prio "PRIu8")",
29+
DEBUG("sys: init (stack %"PRIu16", mon %"PRIu16", prio %"PRIu8", wd %"PRIu8")",
3030
(uint16_t)sizeof(sSysTaskStack), (uint16_t)FF_SYS_MON_PERIOD,
31-
(uint8_t)FF_SYS_TASK_PRIO);
31+
(uint8_t)FF_SYS_TASK_PRIO, (uint8_t)FF_SYS_SW_WATCHDOG);
3232
}
3333

3434
void sysCreateSystemTask(void)

0 commit comments

Comments
 (0)