Details | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 60 | jimmy | 1 | /** |
| 2 | * Configuration file for the UART software module. |
||
| 3 | */ |
||
| 4 | |||
| 5 | #ifndef UART_CFG_H_ |
||
| 6 | #define UART_CFG_H_ |
||
| 7 | |||
| 8 | /*----------------------------------------------------------------------------- |
||
| 9 | * Defines |
||
| 10 | *---------------------------------------------------------------------------*/ |
||
| 11 | |||
| 12 | /** UART baudrate */ |
||
| 13 | #define BAUD 115200 |
||
| 14 | /** Size of the circular receive buffer, must be power of 2 */ |
||
| 15 | #define UART_RX_BUFFER_SIZE 32 |
||
| 16 | /** Size of the circular transmit buffer, must be power of 2 */ |
||
| 17 | #define UART_TX_BUFFER_SIZE 32 |
||
| 18 | |||
| 19 | #endif /*UART_CFG_H_*/ |