diff --git a/application.c b/application.c index 5a119ae..a4b06a2 100644 --- a/application.c +++ b/application.c @@ -330,10 +330,10 @@ void main(void) #if !(DEBUG) // show watchdog information - printf("setup watchdog: %.2fs",WATCHDOG_PERIOD/1000.0); - if (FLASH_OBR&FLASH_OBR_OPTERR) { + printf("setup watchdog: %.2fs", WATCHDOG_PERIOD / 1000.0); + if (FLASH_OBR & FLASH_OBR_OPTERR) { printf(" (option bytes not set in flash: software wachtdog used, not automatically started at reset)\n"); - } else if (FLASH_OBR&FLASH_OBR_WDG_SW) { + } else if (FLASH_OBR & FLASH_OBR_WDG_SW) { printf(" (software watchdog used, not automatically started at reset)\n"); } else { printf(" (hardware watchdog used, automatically started at reset)\n");