Merge branch 'FM_Ext' into AX25_FM

This commit is contained in:
Jonathan Naylor
2020-06-25 10:41:48 +01:00
48 changed files with 1193 additions and 1546 deletions
+2 -1
View File
@@ -81,7 +81,8 @@ void CNXDNTX::process()
m_poBuffer[m_poLen++] = NXDN_PREAMBLE[2U];
} else {
for (uint8_t i = 0U; i < NXDN_FRAME_LENGTH_BYTES; i++) {
uint8_t c = m_buffer.get();
uint8_t c = 0U;
m_buffer.get(c);
m_poBuffer[m_poLen++] = c;
}
}