mirror of
https://github.com/g4klx/MMDVM.git
synced 2026-08-21 14:36:21 +02:00
Merge pull request #327 from shawnchain/fix_ax25_dac_overflow_error
This commit is contained in:
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user