firm newest

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

Committer:
nguyenhoang9x5555
Date:
Mon Oct 22 01:56:09 2018 +0000
Revision:
1:c1c6549b9333
Parent:
0:3c869a8cb8f8
hey

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nguyenhoang9x5555 0:3c869a8cb8f8 1 /*
nguyenhoang9x5555 0:3c869a8cb8f8 2 * CmdDeviceClass.h
nguyenhoang9x5555 0:3c869a8cb8f8 3 *
nguyenhoang9x5555 0:3c869a8cb8f8 4 * Created on: Nov 9, 2015
nguyenhoang9x5555 0:3c869a8cb8f8 5 * Author: jreiss
nguyenhoang9x5555 0:3c869a8cb8f8 6 */
nguyenhoang9x5555 0:3c869a8cb8f8 7
nguyenhoang9x5555 0:3c869a8cb8f8 8 #ifndef CMDDEVICECLASS_H_
nguyenhoang9x5555 0:3c869a8cb8f8 9 #define CMDDEVICECLASS_H_
nguyenhoang9x5555 0:3c869a8cb8f8 10
nguyenhoang9x5555 0:3c869a8cb8f8 11 #include "Command.h"
nguyenhoang9x5555 0:3c869a8cb8f8 12
nguyenhoang9x5555 0:3c869a8cb8f8 13 class CmdDeviceClass: public Command {
nguyenhoang9x5555 0:3c869a8cb8f8 14 public:
nguyenhoang9x5555 0:3c869a8cb8f8 15 CmdDeviceClass();
nguyenhoang9x5555 0:3c869a8cb8f8 16 virtual ~CmdDeviceClass();
nguyenhoang9x5555 0:3c869a8cb8f8 17 static uint32_t action(std::vector<std::string> args);
nguyenhoang9x5555 0:3c869a8cb8f8 18 static bool verify(std::vector<std::string> args);
nguyenhoang9x5555 0:3c869a8cb8f8 19
nguyenhoang9x5555 0:3c869a8cb8f8 20 private:
nguyenhoang9x5555 0:3c869a8cb8f8 21
nguyenhoang9x5555 0:3c869a8cb8f8 22
nguyenhoang9x5555 0:3c869a8cb8f8 23 };
nguyenhoang9x5555 0:3c869a8cb8f8 24
nguyenhoang9x5555 0:3c869a8cb8f8 25 #endif /* CMDDEVICECLASS_H_ */