00001 /* CD_Link.h */ 00002 00003 #ifndef CD_Link_H 00004 #define CD_Link_H 00005 00006 #define MSG_START_CHAR '#' /* start of message mark */ 00007 #define MSG_END_CHAR '\x0D' /* end of message mark */ 00008 00009 void CD_LinkInit(void); 00010 void CD_LinkRXChar(unsigned char chr); 00011 void CD_LinkTXChar(unsigned char chr); 00012 void CD_LinkTXStr(unsigned char *str); 00013 void CD_LinkMsgError(unsigned char cod); 00014 void CD_LinkMsgOK(void); 00015 00016 #endif