Skip to content

Commit c2e769e

Browse files
Merge pull request #92 from nasa-jpl/dloret-actuator-message-typos
Fixed typo in error messages.
2 parents cc3e2ae + 8e9a13e commit c2e769e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/jsd/actuator.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,21 +363,21 @@ bool fastcat::Actuator::Write(DeviceCmd& cmd)
363363

364364
case ACTUATOR_PROF_POS_CMD:
365365
if (!HandleNewProfPosCmd(cmd)) {
366-
ERROR("Failed to setup Actuator Profiled Pos command");
366+
ERROR("Failed to setup Actuator Profiled Position command");
367367
return false;
368368
}
369369
break;
370370

371371
case ACTUATOR_PROF_VEL_CMD:
372372
if (!HandleNewProfVelCmd(cmd)) {
373-
ERROR("Failed to setup Actuator Profiled Pos command");
373+
ERROR("Failed to setup Actuator Profiled Velocity command");
374374
return false;
375375
}
376376
break;
377377

378378
case ACTUATOR_PROF_TORQUE_CMD:
379379
if (!HandleNewProfTorqueCmd(cmd)) {
380-
ERROR("Failed to setup Actuator Profiled Pos command");
380+
ERROR("Failed to setup Actuator Profiled Torque command");
381381
return false;
382382
}
383383
break;

0 commit comments

Comments
 (0)