Fix MULTI_NAMES len...

This commit is contained in:
pascallanger 2019-10-17 22:35:43 +02:00
parent 6a83cb5577
commit 2154b75499
3 changed files with 3 additions and 4 deletions

View File

@ -19,7 +19,7 @@
#define VERSION_MAJOR 1 #define VERSION_MAJOR 1
#define VERSION_MINOR 3 #define VERSION_MINOR 3
#define VERSION_REVISION 0 #define VERSION_REVISION 0
#define VERSION_PATCH_LEVEL 21 #define VERSION_PATCH_LEVEL 22
//****************** //******************
// Protocols // Protocols

View File

@ -129,7 +129,7 @@ static void multi_send_status()
{ {
#ifdef MULTI_NAMES #ifdef MULTI_NAMES
if(multi_protocols_index != 0xFF) if(multi_protocols_index != 0xFF)
multi_send_header(MULTI_TELEMETRY_STATUS, 25); multi_send_header(MULTI_TELEMETRY_STATUS, 24);
else else
#endif #endif
multi_send_header(MULTI_TELEMETRY_STATUS, 6); multi_send_header(MULTI_TELEMETRY_STATUS, 6);

View File

@ -274,9 +274,8 @@
#define MULTI_TELEMETRY #define MULTI_TELEMETRY
//Send to OpenTX the current protocol and subprotocol names. Comment to disable. //Send to OpenTX the current protocol and subprotocol names. Comment to disable.
#define MULTI_NAMES #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. //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 //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 #define DSM_TELEMETRY // Forward received telemetry packet directly to TX to be decoded by er9x, erskyTX and OpenTX