xrocusOS_ADXL355 version

Dependencies:   mbed SDFileSystem

include/CommandParser.h

Committer:
Inscape_ao
Date:
2019-04-20
Revision:
0:c347f602596d
Child:
1:71c9c97c9f3d

File content as of revision 0:c347f602596d:

#ifndef _COMMANDPARSER_H_
#define _COMMANDPARSER_H_

#include "UartReceiver.h"

typedef struct _command_parser_rule_s {
    char* cmdName;
    int(*func)(char*);
} CmdParseRule;

class CommandParser
{
public:
    const static int CmdNameLen = 3;
    const static int CmdLen = sizeof(":0 CMD 0000") - 1 /* EOL */;
private:
    int deviceID;
    UartReceiver *pR;
    Serial *pUart;
    CmdParseRule *ruleTable;
    int ruleTableLen;
private:
    CommandParser(void);
public:
    CommandParser(UartReceiver *setUartReceiver, int setDeviceID,
        CmdParseRule *setRuleTable, int setRuleTableLen);
    void run(void);
    int parse(char *pStr);
    
};
#endif /* _COMMANDPARSER_H_ */