Adjusted status LED definitions
[LPC2xxx_and_RobotSpejbl.git] / app / minibee / uart_minibee.h
blob1221f90c7e24fac3088c414ae827205d9a1fa752
1 //
2 // Author: Bc. Jiri Kubias <Jiri.kubias@gmail.com>, (C) 2008
3 //
4 // Copyright: (c) DCE FEE CTU - Department of Control Engeneering
5 // License: GNU GPL v.2
6 //
8 /**
9 * @file uart_minibee.h
10 * @author Bc. Jiri Kubias , DCE FEL CTU 2008
12 * @brief Uart library - function prototypes
16 #ifndef UART_MINIBEE_H
17 #define UART_MINIBEE_H
19 void uart_send_char(char val);
20 char uart_get_char(void);
21 void init_uart(void);
22 void send_rs_int(int val);
23 void send_rs_str(char data[]);
27 #endif