cmvr-es/include/hardware/can/motor_protocol/ti5motorprotocol.h

20 lines
374 B
C
Raw Normal View History

2025-10-22 16:40:55 +08:00
//
// Created by linbo on 2025/10/22.
//
#ifndef CMVR_ES_TI5MOTOR_H
#define CMVR_ES_TI5MOTOR_H
#include "rapidxml/xml_parser.h"
2025-10-24 09:51:14 +08:00
#include "abstractmotorprotocol.h"
2025-10-22 16:40:55 +08:00
namespace cmvr::device{
2025-10-24 09:51:14 +08:00
class Ti5MotorProtocol final : public AbstractMotorProtocol {
2025-10-22 16:40:55 +08:00
public:
2025-10-24 09:51:14 +08:00
explicit Ti5MotorProtocol(const XmlNode &cfg);
2025-10-22 16:40:55 +08:00
private:
};
}
#endif //CMVR_ES_TI5MOTOR_H