Skip to content

Commit

Permalink
Merge pull request #738 from cswkim/add-no-setpoint-set-offboard-result
Browse files Browse the repository at this point in the history
Add NO_SETPOINT_SET result to Offboard plugin
  • Loading branch information
julianoes authored May 3, 2019
2 parents c8fc0ec + b96902e commit e3a1060
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/offboard/offboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ const char *Offboard::result_str(Result result)
return "Command denied";
case Result::TIMEOUT:
return "Timeout";
case Result::NO_SETPOINT_SET:
return "No setpoint set";
case Result::UNKNOWN:
default:
return "Unknown";
Expand Down

0 comments on commit e3a1060

Please sign in to comment.