📝 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

@@ -53,7 +53,7 @@
// b7 b6 b5 b4 ~b4 ... hi bits, NOT last bit
// b3 b2 b1 b0 ~b0 ... lo bits, NOT last bit
//
void M672_send(uint8_t b) { // bit rate requirement: 1KHz +/- 30%
void M672_send(uint8_t b) { // bit rate requirement: 1kHz +/- 30%
LOOP_L_N(bits, 14) {
switch (bits) {
default: { OUT_WRITE(SMART_EFFECTOR_MOD_PIN, !!(b & 0x80)); b <<= 1; break; } // send bit, shift next into place