fix: last 199 channel was not being read

This commit is contained in:
Nunu 2023-12-28 14:47:54 +01:00
parent 3c60b37ebd
commit 948f646a7a

View File

@ -772,7 +772,7 @@ void BOARD_gMR_LoadChannels() {
uint8_t i;
uint32_t freq_buf;
for (i = MR_CHANNEL_FIRST; i < MR_CHANNEL_LAST; i++)
for (i = MR_CHANNEL_FIRST; i <= MR_CHANNEL_LAST; i++)
{
freq_buf = BOARD_fetchChannelFrequency(i);