📝 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

@@ -2495,7 +2495,7 @@ bool Planner::_populate_block(block_t * const block, bool split_move,
if (extruder_advance_K[active_extruder] * block->e_D_ratio * block->acceleration * 2 < SQRT(block->nominal_speed_sqr) * block->e_D_ratio)
SERIAL_ECHOLNPGM("More than 2 steps per eISR loop executed.");
if (block->advance_speed < 200)
SERIAL_ECHOLNPGM("eISR running at > 10kHz.");
SERIAL_ECHOLNPGM("eISR running at > 10KHz.");
#endif
}
#endif

View File

@@ -883,7 +883,7 @@ class Planner {
static void finish_and_disable();
// Periodic handler to manage the cleaning buffer counter
// Called from the Temperature ISR at ~1kHz
// Called from the Temperature ISR at ~1KHz
static void isr() { if (cleaning_buffer_counter) --cleaning_buffer_counter; }
/**