firm newest

Dependencies:   MTS-Serial libmDot-dev-mbed5-deprecated

Committer:
nguyenhoang9x5555
Date:
Thu Oct 18 04:18:48 2018 +0000
Revision:
0:3c869a8cb8f8
DOT AT FIRMWARE 18102018

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nguyenhoang9x5555 0:3c869a8cb8f8 1 #ifndef __CMDDUMMY_H__
nguyenhoang9x5555 0:3c869a8cb8f8 2 #define __CMDDUMMY_H__
nguyenhoang9x5555 0:3c869a8cb8f8 3
nguyenhoang9x5555 0:3c869a8cb8f8 4 #include "Command.h"
nguyenhoang9x5555 0:3c869a8cb8f8 5
nguyenhoang9x5555 0:3c869a8cb8f8 6 class CmdDummy : public Command {
nguyenhoang9x5555 0:3c869a8cb8f8 7
nguyenhoang9x5555 0:3c869a8cb8f8 8 public:
nguyenhoang9x5555 0:3c869a8cb8f8 9
nguyenhoang9x5555 0:3c869a8cb8f8 10 CmdDummy(const char* name, const char* text, const char* desc, const char* usage);
nguyenhoang9x5555 0:3c869a8cb8f8 11 static uint32_t action(std::vector<std::string> args);
nguyenhoang9x5555 0:3c869a8cb8f8 12 static bool verify(std::vector<std::string> args);
nguyenhoang9x5555 0:3c869a8cb8f8 13
nguyenhoang9x5555 0:3c869a8cb8f8 14 private:
nguyenhoang9x5555 0:3c869a8cb8f8 15 };
nguyenhoang9x5555 0:3c869a8cb8f8 16
nguyenhoang9x5555 0:3c869a8cb8f8 17 #endif // __CMDDUMMY_H__