From 68bdfee641face3bc408e0775a8df9f38e70db89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Sat, 21 Dec 2019 19:26:58 +0100 Subject: [PATCH] application: minor, spacing --- application.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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");