renamed GetProtocolVersion() to GetParserProtocolVersion()

This commit is contained in:
Ruixiang Du
2021-07-15 13:34:22 +08:00
parent 541ec08514
commit e96b078c05
12 changed files with 22 additions and 21 deletions

View File

@@ -29,8 +29,8 @@ void HunterRobot::Connect(std::string can_name) { robot_->Connect(can_name); }
void HunterRobot::ResetRobotState() { robot_->ResetRobotState(); }
ProtocolVersion HunterRobot::GetProtocolVersion() {
return robot_->GetProtocolVersion();
ProtocolVersion HunterRobot::GetParserProtocolVersion() {
return robot_->GetParserProtocolVersion();
}
void HunterRobot::SetMotionCommand(double linear_vel, double angular_vel) {