Skip to content

Commit

Permalink
Debug on AFHDS2A telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Langer committed May 6, 2019
1 parent 5538d4d commit 2b47958
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Multiprotocol/AFHDS2A_a7105.ino
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,13 @@ static void AFHDS2A_update_telemetry()
{
// forward telemetry to TX, skip rx and tx id to save space
pkt[0]= TX_RSSI;
debug("T=");
for(int i=9;i < AFHDS2A_RXPACKET_SIZE; i++)
{
pkt[i-8]=packet[i];

debug(" %02X",packet[i]);
}
debugln("");
telemetry_link=2;
return;
}
Expand Down
2 changes: 1 addition & 1 deletion Multiprotocol/Multiprotocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 2
#define VERSION_REVISION 1
#define VERSION_PATCH_LEVEL 38
#define VERSION_PATCH_LEVEL 39

//******************
// Protocols
Expand Down

0 comments on commit 2b47958

Please sign in to comment.