Reworked AFSK Struct

This commit is contained in:
Mark Qvist 2014-04-03 23:22:15 +02:00
parent 854d0abbe5
commit e76216875e
4 changed files with 115 additions and 153 deletions

View file

@ -34,8 +34,8 @@ int main(void)
while (1)
{
if (!fifo_isempty(&afsk.rx_fifo)) {
char c = fifo_pop(&afsk.rx_fifo);
if (!fifo_isempty(&afsk.rxFifo)) {
char c = fifo_pop(&afsk.rxFifo);
kprintf("%c", c);
}
}