diff --git a/openrtx/src/ui/ui.c b/openrtx/src/ui/ui.c index bef60817..338adb67 100644 --- a/openrtx/src/ui/ui.c +++ b/openrtx/src/ui/ui.c @@ -730,7 +730,9 @@ void ui_updateFSM(event_t event, bool *sync_rtx) } else if(msg.keys & KEY_DOWN) { - ui_state.menu_selected += 1; + channel_t channel; + if(nvm_readChannelData(&channel, ui_state.menu_selected + 1) != -1) + ui_state.menu_selected += 1; } else if(msg.keys & KEY_ESC) {