Fix getStatus() reply length

This commit is contained in:
Andy CA6JAU 2018-06-18 14:44:26 -04:00
parent 82b62b9645
commit d9a868eb10

View file

@ -114,7 +114,7 @@ void CSerialPort::getStatus()
// Send all sorts of interesting internal values
reply[0U] = MMDVM_FRAME_START;
reply[1U] = 11U;
reply[1U] = 12U;
reply[2U] = MMDVM_GET_STATUS;
reply[3U] = 0x00U;
@ -177,7 +177,7 @@ void CSerialPort::getStatus()
else
reply[11U] = 0U;
writeInt(1U, reply, 11);
writeInt(1U, reply, 12);
}
void CSerialPort::getVersion()