Initial import of onewire-to-usb bridge
[onewire] / user.h
CommitLineData
bba33fe1
JM
1/******************************************************************************/
2/* User Level #define Macros */
3/******************************************************************************/
4
5/* TODO Application specific user parameters used in user.c may go here */
6
7/******************************************************************************/
8/* User Function Prototypes */
9/******************************************************************************/
10
11/* TODO User level functions prototypes (i.e. InitApp) go here */
12
13void InitApp(void); /* I/O and Peripheral Initialization */
14bool msg_empty(void);
15void msg_write(const char *msg);
16void msg_writebyte(const char msg);
17void msg_sendnext(void);
18void tohex(char val[3], uint8_t i);
19void msg_recvnext(void);
20bool msg_recvready(void);
21char msg_recv(void);
22void putch(char);
23
24void int_disable(void);
25void int_enable(void);
26
27void timer_rollover(void);
28