mirror of https://github.com/g4klx/MMDVM.git
Fix compile issue for the serial repeater.
This commit is contained in:
parent
8240225371
commit
fa9040fdf0
|
@ -906,7 +906,8 @@ void CSerialPort::process()
|
||||||
space = avail;
|
space = avail;
|
||||||
|
|
||||||
for (uint16_t i = 0U; i < space; i++) {
|
for (uint16_t i = 0U; i < space; i++) {
|
||||||
uint8_t c = m_repeat.get();
|
uint8_t c = 0U;
|
||||||
|
m_repeat.get(c);
|
||||||
writeInt(3U, &c, 1U);
|
writeInt(3U, &c, 1U);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue