moved state update function to agilex base class

This commit is contained in:
Ruixiang Du
2021-07-14 10:53:24 +08:00
parent 257787eb1b
commit 0d99c56f95
12 changed files with 176 additions and 166 deletions

View File

@@ -37,7 +37,8 @@ class ScoutRobot : public RobotInterface, public ScoutInterface {
ProtocolVersion GetProtocolVersion() override;
// get robot state
ScoutState GetRobotState() override;
ScoutCoreState GetRobotState() override;
ScoutActuatorState GetActuatorState() override;
private:
RobotInterface* robot_;