Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2169 - 1
//############################################################################
2
// Implement your own RC-decoding routines here
3
//############################################################################
4
 
5
#include "sbus.h"
6
 
7
//############################################################################
8
// Initialize the UART here
9
//############################################################################
10
void User_Receiver_Init(void)
11
{
12
        SbusUartInit();
13
};
14
 
15
 
16
//############################################################################
17
// Is called by the uart RX interrupt
18
// UDR contains the received byte
19
//############################################################################
20
void User_RX_Parser(unsigned char udr)
21
{
22
        SbusParser(udr);
23
};
24