summaryrefslogtreecommitdiff
path: root/src/reception.c
blob: 12c18667cf9d04f73695717b511a6e148fbb100e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "reception.h"
#include "Serial.h"
#include <stdbool.h>

static volatile bool rx;

static enum
{

} state;

void reception_ev(void)
{
    rx = true;
}

void reception_loop(void)
{
    for (;;)
    {
        if (rx)
        {

        }
    }
}