We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 524532e commit 7bff6c5Copy full SHA for 7bff6c5
radio/src/telemetry/crossfire.h
@@ -145,8 +145,10 @@ const uint8_t CROSSFIRE_PERIODS[] = {
145
146
#define CRSF_ELRS_MIN_VER(maj, min) \
147
(crossfireModuleStatus.isELRS \
148
- && crossfireModuleStatus.major >= maj \
149
- && crossfireModuleStatus.minor >= min)
+ && crossfireModuleStatus.major >= maj)
+/* && (crossfireModuleStatus.major > maj \
150
+ || (crossfireModuleStatus.major == maj \
151
+ && crossfireModuleStatus.minor >= min))) */
152
153
#if !defined(LUA)
154
bool crossfireTelemetryPush(uint8_t command, uint8_t *data, uint32_t length);
0 commit comments