comparison comm.h @ 0:c59513fd84fb

Initial commit of STM32 test code.
author Daniel O'Connor <darius@dons.net.au>
date Mon, 03 Oct 2011 21:19:15 +1030
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c59513fd84fb
1 #ifndef COMM_H_
2 #define COMM_H_
3
4 void comm_init(void);
5 int comm_test(void);
6 void comm_put(char);
7 void comm_puts(const char*);
8 char comm_get(void);
9
10 #endif
11