Sub: disable rate controller in manual mode

This commit is contained in:
jaxxzer 2016-07-04 12:46:37 -04:00 committed by Andrew Tridgell
parent 6696119ec7
commit 90580621de

View File

@ -372,6 +372,9 @@ void Sub::print_flight_mode(AP_HAL::BetterStream *port, uint8_t mode)
case THROW:
port->print("THROW");
break;
case MANUAL:
port->print("MANUAL");
break;
default:
port->printf("Mode(%u)", (unsigned)mode);
break;