Subversion Repositories FlightCtrl

Rev

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

Rev 1612 Rev 1645
Line 9... Line 9...
9
#include <inttypes.h>
9
#include <inttypes.h>
Line 10... Line 10...
10
 
10
 
11
//Baud rate of the USART
11
//Baud rate of the USART
Line 12... Line 12...
12
#define USART0_BAUD 57600
12
#define USART0_BAUD 57600
13
 
13
 
14
extern void USART0_Init (void);
14
extern void usart0_Init (void);
15
extern void USART0_TransmitTxData(void);
15
extern void usart0_TransmitTxData(void);
Line 16... Line 16...
16
extern void USART0_ProcessRxData(void);
16
extern void usart0_ProcessRxData(void);
Line 17... Line 17...
17
extern int16_t uart_putchar(int8_t c);
17
extern int16_t uart_putchar(int8_t c);