diff --git a/src/main/drivers/vtx_common.c b/src/main/drivers/vtx_common.c index baee0aed7c..f906b8e053 100644 --- a/src/main/drivers/vtx_common.c +++ b/src/main/drivers/vtx_common.c @@ -72,7 +72,7 @@ void vtxCommonSetBandAndChannel(vtxDevice_t *vtxDevice, uint8_t band, uint8_t ch // index is zero origin, zero = power off completely void vtxCommonSetPowerByIndex(vtxDevice_t *vtxDevice, uint8_t index) { - if (index < vtxDevice->capability.powerCount) { + if (index <= vtxDevice->capability.powerCount) { vtxDevice->vTable->setPowerByIndex(vtxDevice, index); } }