diff --git a/Multiprotocol/FrSkyDVX_common.ino b/Multiprotocol/FrSkyDVX_common.ino index d8f68d7..a6d416c 100644 --- a/Multiprotocol/FrSkyDVX_common.ino +++ b/Multiprotocol/FrSkyDVX_common.ino @@ -39,7 +39,7 @@ uint16_t FrSkyX_crc(uint8_t *data, uint8_t len, uint8_t init=0) #endif -#if defined(FRSKYD_CC2500_INO) || defined(FRSKYX_CC2500_INO) || defined(FRSKYX_CC2500_INO) +#if defined(FRSKYD_CC2500_INO) || defined(FRSKYX_CC2500_INO) || defined(FRSKYX_CC2500_INO) || defined(FRSKYL_CC2500_INO) || defined(FRSKY_RX_CC2500_INO) enum { FRSKY_BIND = 0, FRSKY_BIND_DONE = 1000, diff --git a/Multiprotocol/Validate.h b/Multiprotocol/Validate.h index d30152b..3a92aa9 100644 --- a/Multiprotocol/Validate.h +++ b/Multiprotocol/Validate.h @@ -79,6 +79,11 @@ #error "The FrSkyD forced frequency tuning value is outside of the range -127..127." #endif #endif +#ifdef FORCE_FRSKYL_TUNING + #if ( FORCE_FRSKYL_TUNING < -127 ) || ( FORCE_FRSKYL_TUNING > 127 ) + #error "The FrSkyL forced frequency tuning value is outside of the range -127..127." + #endif +#endif #ifdef FORCE_FRSKYV_TUNING #if ( FORCE_FRSKYV_TUNING < -127 ) || ( FORCE_FRSKYV_TUNING > 127 ) #error "The FrSkyV forced frequency tuning value is outside of the range -127..127."