Remove the delay when using COS.

This commit is contained in:
Jonathan Naylor 2020-05-10 17:13:10 +01:00
parent da16ee277c
commit 3ad443dc2a
5 changed files with 12 additions and 15 deletions

View file

@ -79,7 +79,7 @@ void CP25TX::process()
uint8_t length;
m_buffer.get(length);
for (uint8_t i = 0U; i < length; i++) {
uint8_t c;
uint8_t c = 0U;
m_buffer.get(c);
m_poBuffer[m_poLen++] = c;
}