From 498c5d5e22c885caf6e0385e1b96bc35b45723d1 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sat, 15 Jul 2023 19:25:51 +0200 Subject: [PATCH] [Morse] Fix typo --- src/protocols/Morse/Morse.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/protocols/Morse/Morse.cpp b/src/protocols/Morse/Morse.cpp index e2a80cf6..27cb5eac 100644 --- a/src/protocols/Morse/Morse.cpp +++ b/src/protocols/Morse/Morse.cpp @@ -56,7 +56,7 @@ char MorseClient::decode(uint8_t symbol, uint8_t len) { } // nothing found - return(RADIOLIB_MORSE_UNSUPORTED); + return(RADIOLIB_MORSE_UNSUPPORTED); } #if !defined(RADIOLIB_EXCLUDE_AFSK) @@ -132,7 +132,7 @@ size_t MorseClient::write(uint8_t b) { uint8_t code = RADIOLIB_NONVOLATILE_READ_BYTE(&MorseTable[(uint8_t)(toupper(b) - RADIOLIB_MORSE_ASCII_OFFSET)]); // check unsupported characters - if(code == RADIOLIB_MORSE_UNSUPORTED) { + if(code == RADIOLIB_MORSE_UNSUPPORTED) { return(0); }