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

@@ -188,9 +188,9 @@ static void multi_send_status()
void AFHDSA_short_frame()
{
#if defined MULTI_TELEMETRY
multi_send_header(pkt[29]==0xAA?MULTI_TELEMETRY_AFHDS2A,MULTI_TELEMETRY_AFHDS2A_AC, 29);
multi_send_header(MULTI_TELEMETRY_AFHDS2A, 29);
#else
Serial_write(pkt[29]); // Telemetry packet 0xAA or 0xAC
Serial_write(0xAA); // Telemetry packet
#endif
for (uint8_t i = 0; i < 29; i++) // RSSI value followed by 4*7 bytes of telemetry data
Serial_write(pkt[i]);