Fix compiler warnings when building for POG style boards.

This commit is contained in:
Jonathan Naylor 2021-07-19 21:20:57 +01:00
parent 9c883cfafd
commit 96c0e5b141
5 changed files with 51 additions and 8 deletions

2
IO.cpp
View file

@ -746,6 +746,7 @@ void CIO::setMode(MMDVM_STATE state)
case STATE_M17: setM17Int(false); break;
case STATE_POCSAG: setPOCSAGInt(false); break;
case STATE_FM: setFMInt(false); break;
default: break;
}
switch (state) {
@ -757,6 +758,7 @@ void CIO::setMode(MMDVM_STATE state)
case STATE_M17: setM17Int(true); break;
case STATE_POCSAG: setPOCSAGInt(true); break;
case STATE_FM: setFMInt(true); break;
default: break;
}
#endif