📝 kHz => KHz

This commit is contained in:
Scott Lahteine
2022-01-10 19:49:03 -06:00
parent 476028d476
commit 02b29c0fec
20 changed files with 36 additions and 36 deletions

View File

@@ -39,7 +39,7 @@ void watchdogSetup() {
uint32_t timeout = TERN(WATCHDOG_DURATION_8S, 8000, 4000);
// Calculate timeout value in WDT counter ticks: This assumes
// the slow clock is running at 32.768 kHz watchdog
// the slow clock is running at 32.768 KHz watchdog
// frequency is therefore 32768 / 128 = 256 Hz
timeout = (timeout << 8) / 1000;
if (timeout == 0)