Commit e5a94ef2 authored by Lorenz Meier's avatar Lorenz Meier

UAS: Add UAVCAN config end command

parent 40d8fa8e
...@@ -1359,7 +1359,10 @@ void UAS::startBusConfig(UASInterface::StartBusConfigType calType) ...@@ -1359,7 +1359,10 @@ void UAS::startBusConfig(UASInterface::StartBusConfigType calType)
switch (calType) { switch (calType) {
case StartBusConfigActuators: case StartBusConfigActuators:
actuatorCal = 1; actuatorCal = 1;
break; break;
case EndBusConfigActuators:
actuatorCal = 0;
break;
} }
mavlink_message_t msg; mavlink_message_t msg;
......
...@@ -187,7 +187,8 @@ public: ...@@ -187,7 +187,8 @@ public:
}; };
enum StartBusConfigType { enum StartBusConfigType {
StartBusConfigActuators StartBusConfigActuators,
EndBusConfigActuators,
}; };
/// Starts the specified calibration /// Starts the specified calibration
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment