From 65cda87e7dabbffdef31696c11b788ffa1cc39cc Mon Sep 17 00:00:00 2001 From: madcow Date: Mon, 2 Feb 2026 19:37:55 +0000 Subject: [PATCH] Banish all the ambiguity that has arisen from unicode characters in datasheets --- src/common/watchdog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/watchdog.c b/src/common/watchdog.c index e3463d6..958d2ac 100644 --- a/src/common/watchdog.c +++ b/src/common/watchdog.c @@ -97,7 +97,7 @@ bool WDT_HasTriggered(void) // which reset source caused an MCU reset. // 7 6 5 4 3 2 1 0 - // - - – JTRF WDRF BORF EXTRF PORF + // - - - JTRF WDRF BORF EXTRF PORF // Is watchdog reset flag set? isreset = ((MCUSR & BIT(WDRF)) != 0); @@ -128,7 +128,7 @@ void WDT_Disable(void) // See macro in watchdog.h void WDT_Reset(void) { - // The WDR – Watchdog Reset – instruction resets the + // The WDR - Watchdog Reset - instruction resets the // watchdog timer. The Watchdog Timer is also reset // when it is disabled and when a chip reset occurs.