summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tms320dm320/mrobe-500/uart-target.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/tms320dm320/mrobe-500/uart-target.h')
-rw-r--r--firmware/target/arm/tms320dm320/mrobe-500/uart-target.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/firmware/target/arm/tms320dm320/mrobe-500/uart-target.h b/firmware/target/arm/tms320dm320/mrobe-500/uart-target.h
new file mode 100644
index 0000000000..f077dc1025
--- /dev/null
+++ b/firmware/target/arm/tms320dm320/mrobe-500/uart-target.h
@@ -0,0 +1,33 @@
1/*
2 * (C) Copyright 2007 Catalin Patulea <cat@vv.carleton.ca>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of
7 * the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
17 * MA 02111-1307 USA
18 *
19 */
20#ifndef UART_H
21#define UART_H
22
23void uart_init(void);
24bool uart1_getch(char *c);
25void uart1_heartbeat(void);
26
27void uartPuts(const char *str);
28void uartGets(char *str, unsigned int size);
29int uartPollch(unsigned int ticks);
30void uartPutc(char ch);
31void uartPutHex(unsigned int n);
32
33#endif