📝 KHz => kHz (#23512)

This commit is contained in:
Keith Bennett
2022-01-12 08:24:56 -08:00
committed by GitHub
parent 9086082c1f
commit 3e2a38b653
30 changed files with 52 additions and 52 deletions

View File

@@ -352,7 +352,7 @@ void Endstops::init() {
} // Endstops::init
// Called at ~1KHz from Temperature ISR: Poll endstop state if required
// Called at ~1kHz from Temperature ISR: Poll endstop state if required
void Endstops::poll() {
TERN_(PINS_DEBUGGING, run_monitor()); // Report changes in endstop status
@@ -403,7 +403,7 @@ void Endstops::not_homing() {
void Endstops::resync() {
if (!abort_enabled()) return; // If endstops/probes are disabled the loop below can hang
// Wait for Temperature ISR to run at least once (runs at 1KHz)
// Wait for Temperature ISR to run at least once (runs at 1kHz)
TERN(ENDSTOP_INTERRUPTS_FEATURE, update(), safe_delay(2));
while (TERN0(ENDSTOP_NOISE_THRESHOLD, endstop_poll_count)) safe_delay(1);
}