mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-02-05 05:48:13 +00:00
Send MULTI NAMES all the time
This commit is contained in:
parent
822aa84fa2
commit
7a8e099a79
@ -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 16
|
#define VERSION_PATCH_LEVEL 17
|
||||||
|
|
||||||
//******************
|
//******************
|
||||||
// Protocols
|
// Protocols
|
||||||
|
@ -236,7 +236,6 @@ uint8_t packet_in[TELEMETRY_BUFFER_SIZE];//telemetry receiving packets
|
|||||||
};
|
};
|
||||||
extern const mm_protocol_definition multi_protocols[];
|
extern const mm_protocol_definition multi_protocols[];
|
||||||
uint8_t multi_protocols_index=0xFF;
|
uint8_t multi_protocols_index=0xFF;
|
||||||
uint8_t multi_protocols_send;
|
|
||||||
#endif
|
#endif
|
||||||
#endif // TELEMETRY
|
#endif // TELEMETRY
|
||||||
|
|
||||||
@ -957,7 +956,6 @@ static void protocol_init()
|
|||||||
inputRefreshRate = 7000; // Default value
|
inputRefreshRate = 7000; // Default value
|
||||||
#endif
|
#endif
|
||||||
#ifdef MULTI_NAMES
|
#ifdef MULTI_NAMES
|
||||||
multi_protocols_send = 0;
|
|
||||||
multi_protocols_index = 0xFF;
|
multi_protocols_index = 0xFF;
|
||||||
#endif
|
#endif
|
||||||
tx_pause();
|
tx_pause();
|
||||||
@ -1412,7 +1410,6 @@ static void protocol_init()
|
|||||||
if(multi_protocols[index].protocol==protocol)
|
if(multi_protocols[index].protocol==protocol)
|
||||||
{
|
{
|
||||||
multi_protocols_index=index;
|
multi_protocols_index=index;
|
||||||
multi_protocols_send = 0;
|
|
||||||
SEND_MULTI_STATUS_on;
|
SEND_MULTI_STATUS_on;
|
||||||
#ifdef DEBUG_SERIAL
|
#ifdef DEBUG_SERIAL
|
||||||
debug("Proto=%s",multi_protocols[multi_protocols_index].ProtoString);
|
debug("Proto=%s",multi_protocols[multi_protocols_index].ProtoString);
|
||||||
|
@ -128,7 +128,7 @@ inline void telemetry_set_input_sync(uint16_t refreshRate)
|
|||||||
static void multi_send_status()
|
static void multi_send_status()
|
||||||
{
|
{
|
||||||
#ifdef MULTI_NAMES
|
#ifdef MULTI_NAMES
|
||||||
if(multi_protocols_send && multi_protocols_index != 0xFF)
|
if(multi_protocols_index != 0xFF)
|
||||||
multi_send_header(MULTI_TELEMETRY_STATUS, 25);
|
multi_send_header(MULTI_TELEMETRY_STATUS, 25);
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
@ -188,9 +188,8 @@ static void multi_send_status()
|
|||||||
Serial_write(RUDDER<<6|THROTTLE<<4|ELEVATOR<<2|AILERON);
|
Serial_write(RUDDER<<6|THROTTLE<<4|ELEVATOR<<2|AILERON);
|
||||||
|
|
||||||
#ifdef MULTI_NAMES
|
#ifdef MULTI_NAMES
|
||||||
if(multi_protocols_send && multi_protocols_index != 0xFF)
|
if(multi_protocols_index != 0xFF)
|
||||||
{
|
{
|
||||||
multi_protocols_send--;
|
|
||||||
// Protocol next/prev
|
// Protocol next/prev
|
||||||
if(multi_protocols[multi_protocols_index+1].protocol != 0)
|
if(multi_protocols[multi_protocols_index+1].protocol != 0)
|
||||||
Serial_write(multi_protocols[multi_protocols_index+1].protocol); // next protocol number
|
Serial_write(multi_protocols[multi_protocols_index+1].protocol); // next protocol number
|
||||||
|
Loading…
x
Reference in New Issue
Block a user