Rover: fixed range check for RC channel

This commit is contained in:
Andrew Tridgell 2019-12-19 17:37:07 +11:00 committed by Randy Mackay
parent 72b9a69911
commit b671d03cf0
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ public:
RC_Channel_Rover obj_channels[NUM_RC_CHANNELS];
RC_Channel_Rover *channel(const uint8_t chan) override {
if (chan > NUM_RC_CHANNELS) {
if (chan >= NUM_RC_CHANNELS) {
return nullptr;
}
return &obj_channels[chan];