/******************************************************************************/ /* User Level #define Macros */ /******************************************************************************/ /* TODO Application specific user parameters used in user.c may go here */ /******************************************************************************/ /* User Function Prototypes */ /******************************************************************************/ /* TODO User level functions prototypes (i.e. InitApp) go here */ void InitApp(void); /* I/O and Peripheral Initialization */ bool msg_empty(void); void msg_write(const char *msg); void msg_writebyte(const char msg); void msg_sendnext(void); void tohex(char val[3], uint8_t i); void msg_recvnext(void); bool msg_recvready(void); char msg_recv(void); void putch(char); void int_disable(void); void int_enable(void); void timer_rollover(void);