From 2154b754993df505e476f8ac68536dcc19852a43 Mon Sep 17 00:00:00 2001 From: pascallanger Date: Thu, 17 Oct 2019 22:35:43 +0200 Subject: [PATCH] Fix MULTI_NAMES len... --- Multiprotocol/Multiprotocol.h | 2 +- Multiprotocol/Telemetry.ino | 2 +- Multiprotocol/_Config.h | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Multiprotocol/Multiprotocol.h b/Multiprotocol/Multiprotocol.h index d8bba51..53532ea 100644 --- a/Multiprotocol/Multiprotocol.h +++ b/Multiprotocol/Multiprotocol.h @@ -19,7 +19,7 @@ #define VERSION_MAJOR 1 #define VERSION_MINOR 3 #define VERSION_REVISION 0 -#define VERSION_PATCH_LEVEL 21 +#define VERSION_PATCH_LEVEL 22 //****************** // Protocols diff --git a/Multiprotocol/Telemetry.ino b/Multiprotocol/Telemetry.ino index e574193..3c2fd2b 100644 --- a/Multiprotocol/Telemetry.ino +++ b/Multiprotocol/Telemetry.ino @@ -129,7 +129,7 @@ static void multi_send_status() { #ifdef MULTI_NAMES if(multi_protocols_index != 0xFF) - multi_send_header(MULTI_TELEMETRY_STATUS, 25); + multi_send_header(MULTI_TELEMETRY_STATUS, 24); else #endif multi_send_header(MULTI_TELEMETRY_STATUS, 6); diff --git a/Multiprotocol/_Config.h b/Multiprotocol/_Config.h index 2ede3f3..c0346b1 100644 --- a/Multiprotocol/_Config.h +++ b/Multiprotocol/_Config.h @@ -274,9 +274,8 @@ #define MULTI_TELEMETRY //Send to OpenTX the current protocol and subprotocol names. Comment to disable. #define MULTI_NAMES -//WIP DO NOT ENABLE UNLESS YOU KNOW WHAT YOU ARE DOING //Sync OpenTX frames with the current protocol timing. This feature is only available on the STM32 module. Comment to disable. -//#define MULTI_SYNC +#define MULTI_SYNC //Comment a line to disable a specific protocol telemetry #define DSM_TELEMETRY // Forward received telemetry packet directly to TX to be decoded by er9x, erskyTX and OpenTX