Brad Smith / Mbed 2 deprecated rtcController

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Parser.h Source File

Parser.h

00001 #ifndef PARSER_H
00002 #define PARSER_H
00003 
00004 #define ERROR   1
00005 #define NOERROR 0
00006 
00007 extern char *commandTokens[20];
00008 
00009 char validateCommandSentence(char *pSentence);
00010 void parseCommandSentence( char *pBuffer);
00011 char calcChecksum(char *pSentence);
00012 
00013 
00014 
00015 #endif