From 45c6e163739d3ac095f283d07b31e65d6218e0b6 Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Mon, 1 Jun 2020 20:58:45 -0600 Subject: "SOS" is treated as one "letter" in Morse code... it's not three letters (so, don't put the normal inter-letter gap between) --- spaghetti-monster/anduril/anduril.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'spaghetti-monster') diff --git a/spaghetti-monster/anduril/anduril.c b/spaghetti-monster/anduril/anduril.c index 167c14d..01904dc 100644 --- a/spaghetti-monster/anduril/anduril.c +++ b/spaghetti-monster/anduril/anduril.c @@ -1572,7 +1572,8 @@ void sos_blink(uint8_t num, uint8_t dah) { nice_delay_ms(DIT_LENGTH); } // three "off" dits (or one "dah") between letters - nice_delay_ms(DIT_LENGTH*2); + // (except for SOS, which is collectively treated as a single "letter") + //nice_delay_ms(DIT_LENGTH*2); } inline void sos_mode_iter() { -- cgit v1.2.3