Rev 2081 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2038 | holgerb | 1 | //############################################################################ |
2 | // Implement your own RC-decoding routines here |
||
3 | //############################################################################ |
||
4 | |||
5 | |||
6 | //############################################################################ |
||
7 | // Initialize the UART here |
||
8 | //############################################################################ |
||
9 | void User_Receiver_Init(void) |
||
10 | { |
||
11 | // SpektrumUartInit(); // or use an existing routine like this |
||
12 | }; |
||
13 | |||
14 | |||
15 | //############################################################################ |
||
16 | // Is called by the uart RX interrupt |
||
17 | // UDR contains the received byte |
||
18 | //############################################################################ |
||
19 | void User_RX_Parser(unsigned char udr) |
||
20 | { |
||
21 | |||
22 | }; |
||
23 |