1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-03 06:24:48 -04:00

VOR demod: added missing bits

This commit is contained in:
f4exb
2020-11-24 21:45:48 +01:00
parent 505c31f46a
commit 10eb25d8b7
8 changed files with 214 additions and 3 deletions
+1 -1
View File
@@ -180,7 +180,7 @@ QString Morse::toSpacedUnicodeMorse(QString &string)
// Converts a Morse sequence to an ASCII character. -1 if no mapping found.
int Morse::toASCII(QString &morse)
{
for (int i = 0; i < COUNT_OF(m_asciiToMorse); i++)
for (unsigned int i = 0; i < COUNT_OF(m_asciiToMorse); i++)
{
if (morse == m_asciiToMorse[i].morse)
return m_asciiToMorse[i].ascii;