From addf2c514349663695378d93015acbb2af864436 Mon Sep 17 00:00:00 2001 From: Pascal Langer Date: Thu, 11 Feb 2021 09:50:41 +0100 Subject: [PATCH] MT99XX/Dragon: beginner and intermediate swapped... --- Multiprotocol/MT99xx_nrf24l01.ino | 2 +- Multiprotocol/Multiprotocol.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Multiprotocol/MT99xx_nrf24l01.ino b/Multiprotocol/MT99xx_nrf24l01.ino index f5dc587..477ed57 100644 --- a/Multiprotocol/MT99xx_nrf24l01.ino +++ b/Multiprotocol/MT99xx_nrf24l01.ino @@ -180,7 +180,7 @@ static void __attribute__((unused)) MT99XX_send_packet() if(CH5_SW) // Advanced mode packet[5] |= 0x80; else - if(Channel_data[CH5] < CHANNEL_MIN_COMMAND) // Beginner mode + if(Channel_data[CH5] > CHANNEL_MIN_COMMAND) // Beginner mode packet[5] |= 0x40; packet[6] = FLAG_DRAGON_RATE | GET_FLAG( CH6_SW, FLAG_DRAGON_RTH ); diff --git a/Multiprotocol/Multiprotocol.h b/Multiprotocol/Multiprotocol.h index 70944af..d1fa5a4 100644 --- a/Multiprotocol/Multiprotocol.h +++ b/Multiprotocol/Multiprotocol.h @@ -19,7 +19,7 @@ #define VERSION_MAJOR 1 #define VERSION_MINOR 3 #define VERSION_REVISION 2 -#define VERSION_PATCH_LEVEL 36 +#define VERSION_PATCH_LEVEL 37 //****************** // Protocols