24#ifndef FORCEACUATORBUMPTESTCOMMAND_H_
25#define FORCEACUATORBUMPTESTCOMMAND_H_
28#include <SAL_MTM1M3C.h>
29#include <cRIO/DataTypes.h>
40class ForceActuatorBumpTestCommand :
public Command {
42 ForceActuatorBumpTestCommand(int32_t commandID, MTM1M3_command_forceActuatorBumpTestC *data);
44 MTM1M3_command_forceActuatorBumpTestC *getData() {
return &_data; }
52 void ackInProgress(
const char *description,
double timeout)
override;
54 void ackFailed(std::string reason)
override;
57 MTM1M3_command_forceActuatorBumpTestC _data;
void execute() override
Executes the command.
Definition ForceActuatorBumpTestCommand.cpp:61
void ackInProgress(const char *description, double timeout) override
Acknowledges the command is in progress.
Definition ForceActuatorBumpTestCommand.cpp:63
void ackComplete() override
Acknowledges the command has completed successfully.
Definition ForceActuatorBumpTestCommand.cpp:68
void ackFailed(std::string reason) override
Acknowledges the command has failed.
Definition ForceActuatorBumpTestCommand.cpp:72
bool validate() override
Validates command parameters.
Definition ForceActuatorBumpTestCommand.cpp:40