1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-05-05 05:34:00 -04:00

Metis MISO: fixed addressing the 8th receiver frequency

This commit is contained in:
f4exb 2020-09-08 23:47:06 +02:00
parent 2f737b77e2
commit bebba707d1

View File

@ -338,7 +338,7 @@ void MetisMISOUDPHandler::sendData(bool nullPayload)
buffer[6]= (commandValue>>8) & 0xFF; // C3
buffer[7]= commandValue & 0xFF; // C4
if (m_commandBase < 17) { // base count 0 to 18
if (m_commandBase < 18) { // base count 0 to 18
m_commandBase++;
} else {
m_commandBase = 0;