From ef8036ee19414a87d0e2db523d10688eeba5cad8 Mon Sep 17 00:00:00 2001 From: Reed Nightingale Date: Mon, 6 Jan 2020 21:50:21 -0800 Subject: [PATCH] Fix 'F' morse code representation - currently is same as 'L'. First noticed by K7OME --- morse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morse.cpp b/morse.cpp index d1b6dd5..0311c5e 100644 --- a/morse.cpp +++ b/morse.cpp @@ -20,7 +20,7 @@ static const PROGMEM struct Morse morse_table[] = { {'c', 0xea}, // 11101010 {'d', 0xf4}, // 11110100 {'e', 0xfc}, // 11111100 -{'f', 0xe4}, // 11100100 +{'f', 0xe2}, // 11100010 {'g', 0xf6}, // 11110110 {'h', 0xe0}, // 11100000 {'i', 0xf8}, // 11111000