Subversion Repositories FlightCtrl

Rev

Rev 1461 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1461 Rev 1465
Line 10... Line 10...
10
uint8_t rx_buffer[RX_BUFFER_SZ];
10
uint8_t rx_buffer[RX_BUFFER_SZ];
11
//uint8_t tx_buffer[TX_BUFFER_SZ];
11
//uint8_t tx_buffer[TX_BUFFER_SZ];
12
uint8_t rx_pos, tx_pos;
12
uint8_t rx_pos, tx_pos;
13
uint8_t current_servo = 0;
13
uint8_t current_servo = 0;
Line -... Line 14...
-
 
14
 
14
 
15
 
Line 15... Line 16...
15
void uart_init() {
16
void uart_init() {
16
 
17