Skip to content

Commit 4d2c8ef

Browse files
committed
Fix RadioLink: request telemetry every time to time like original instead of all the time
1 parent 438e85c commit 4d2c8ef

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Multiprotocol/Multiprotocol.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define VERSION_MAJOR 1
2020
#define VERSION_MINOR 3
2121
#define VERSION_REVISION 2
22-
#define VERSION_PATCH_LEVEL 82
22+
#define VERSION_PATCH_LEVEL 83
2323

2424
#define MODE_SERIAL 0
2525

Multiprotocol/RadioLink_cc2500.ino

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ static void __attribute__((unused)) RLINK_send_packet()
158158
// header
159159
if(packet_count>3)
160160
packet[1] = 0x02; // 0x02 telemetry request flag
161+
else
162+
packet[1] = 0x00; // no telemetry
163+
161164
switch(sub_protocol)
162165
{
163166
case RLINK_SURFACE:

0 commit comments

Comments
 (0)