mirror of https://github.com/g4klx/MMDVM.git
Fix length of the getConfig reply.
This commit is contained in:
parent
56ced0d939
commit
d151c100db
|
@ -139,11 +139,11 @@ void CSerialPort::getStatus()
|
||||||
{
|
{
|
||||||
io.resetWatchdog();
|
io.resetWatchdog();
|
||||||
|
|
||||||
uint8_t reply[15U];
|
uint8_t reply[20U];
|
||||||
|
|
||||||
// Send all sorts of interesting internal values
|
// Send all sorts of interesting internal values
|
||||||
reply[0U] = MMDVM_FRAME_START;
|
reply[0U] = MMDVM_FRAME_START;
|
||||||
reply[1U] = 11U;
|
reply[1U] = 13U;
|
||||||
reply[2U] = MMDVM_GET_STATUS;
|
reply[2U] = MMDVM_GET_STATUS;
|
||||||
|
|
||||||
reply[3U] = 0x00U;
|
reply[3U] = 0x00U;
|
||||||
|
|
Loading…
Reference in New Issue