📝 KHz => kHz (#23512)

This commit is contained in:
Scott Lahteine
2022-01-10 19:49:03 -06:00
parent c1d3e4634c
commit b6c37960e8
11 changed files with 16 additions and 16 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);
}

View File

@ -3007,8 +3007,8 @@ public:
};
/**
* Handle various ~1KHz tasks associated with temperature
* - Heater PWM (~1KHz with scaler)
* Handle various ~1kHz tasks associated with temperature
* - Heater PWM (~1kHz with scaler)
* - LCD Button polling (~500Hz)
* - Start / Read one ADC sensor
* - Advance Babysteps
@ -3510,7 +3510,7 @@ void Temperature::isr() {
adc_sensor_state = next_sensor_state;
//
// Additional ~1KHz Tasks
// Additional ~1kHz Tasks
//
#if ENABLED(BABYSTEPPING) && DISABLED(INTEGRATED_BABYSTEPPING)