The RF_Mode byte in the CRSF protocol is used to communicate the current RF parameters between the RX and the FC.
The value is an enum, where each value represents a different mode of operation, e.g in ELRS mode 7 is 500Hz LoRa.
For some unknown reason, the RF_Mode was being capped to a max of 7 in the code. This creates problems when using the master branch on ELRS (soon to become v3.0), which uses modes >7. Removing the cap to allow showing these modes.
The
RF_Mode
byte in the CRSF protocol is used to communicate the current RF parameters between the RX and the FC. The value is an enum, where each value represents a different mode of operation, e.g in ELRS mode 7 is 500Hz LoRa.For some unknown reason, the
RF_Mode
was being capped to a max of 7 in the code. This creates problems when using themaster
branch on ELRS (soon to become v3.0), which uses modes >7. Removing the cap to allow showing these modes.