Merge pull request #327 from shawnchain/fix_ax25_dac_overflow_error

This commit is contained in:
Jonathan Naylor
2022-09-13 14:09:12 +01:00
committed by GitHub
+1 -1
View File
@@ -160,7 +160,7 @@ void CAX25TX::writeBit(bool b)
m_tablePtr += 11U;
}
buffer[i] = value;
buffer[i] = value >> 1;
if (m_tablePtr >= AUDIO_TABLE_LEN)
m_tablePtr -= AUDIO_TABLE_LEN;