diff --git a/src/AutoPilotPlugins/PX4/FlightModesComponentController.cc b/src/AutoPilotPlugins/PX4/FlightModesComponentController.cc index 41c8d622b857ceecccf46d6feac406954498c1c6..df7d5f9f4fcebc34ad899c1ea3da7b0a0c1e7880 100644 --- a/src/AutoPilotPlugins/PX4/FlightModesComponentController.cc +++ b/src/AutoPilotPlugins/PX4/FlightModesComponentController.cc @@ -134,7 +134,7 @@ void FlightModesComponentController::_init(void) _channelListModel << "Disabled"; _channelListModelChannel << 0; - for (int channel=1; channel<_channelCount; channel++) { + for (int channel=1; channel<=_channelCount; channel++) { if (!usedChannels.contains(channel)) { _channelListModel << QString("Channel %1").arg(channel); _channelListModelChannel << channel;