Revert "AFHDS2A telemetry AA and AC"

This reverts commit 3c76ce9f39.
This commit is contained in:
Pascal Langer
2019-09-14 16:31:27 +02:00
parent 3c76ce9f39
commit 6f4522caa6
4 changed files with 8 additions and 16 deletions

View File

@@ -89,13 +89,12 @@ static void AFHDS2A_update_telemetry()
if (option & 0x80)
{// forward 0xAA and 0xAC telemetry to TX, skip rx and tx id to save space
pkt[0]= TX_RSSI;
debug("T(%02X)=",packet[0]);
for(uint8_t i=9;i < AFHDS2A_RXPACKET_SIZE; i++)
debug("T=");
for(int i=9;i < AFHDS2A_RXPACKET_SIZE; i++)
{
pkt[i-8]=packet[i];
debug(" %02X",packet[i]);
}
pkt[29]=packet[0]; // 0xAA Normal telemetry, 0xAC Extended telemetry
telemetry_link=2;
debugln("");
return;