123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /*
- structures for telemetry packets
- This header is common to ArduPilot AP_Radio and STM8 TX code
- */
- #pragma once
- enum telem_type {
- TELEM_STATUS= 0, // a telem_status packet
- TELEM_PLAY = 1, // play a tune
- TELEM_FW = 2, // update new firmware
- };
- // flags in telem_status structure
- #define TELEM_FLAG_GPS_OK (1U<<0)
- #define TELEM_FLAG_ARM_OK (1U<<1)
- #define TELEM_FLAG_BATT_OK (1U<<2)
- #define TELEM_FLAG_ARMED (1U<<4)
- #define TELEM_FLAG_POS_OK (1U<<5)
- #define TELEM_FLAG_VIDEO (1U<<6)
- #define TELEM_FLAG_HYBRID (1U<<7)
- struct PACKED telem_status {
- uint8_t pps; // packets per second received
- uint8_t rssi; // lowpass rssi
- uint8_t flags; // TELEM_FLAG_*
- uint8_t flight_mode; // flight mode (with profile number in high bit)
- uint8_t wifi_chan; // wifi channel number on Sonix
- uint8_t tx_max; // max TX power
- uint8_t note_adjust; // buzzer tone adjustment
- };
- // write to new firmware. This is also used to play a tune
- struct PACKED telem_firmware {
- uint8_t seq;
- uint8_t len;
- uint16_t offset;
- uint8_t data[4];
- };
- /*
- telemetry packet from RX to TX for cypress
- */
- struct PACKED telem_packet_cypress {
- uint8_t crc; // simple CRC
- enum telem_type type;
- union {
- uint8_t pkt[14];
- struct telem_status status;
- struct telem_firmware fw;
- } payload;
- };
- /*
- cc2500 specific protocol structures
- */
- struct PACKED telem_status_cc2500 {
- uint8_t pps; // packets per second received
- uint8_t rssi; // lowpass rssi
- uint8_t flags; // TELEM_FLAG_*
- uint8_t flight_mode; // flight mode (with profile number in high bit)
- uint8_t wifi_chan; // wifi channel number on Sonix
- uint8_t tx_max; // max TX power
- uint8_t note_adjust; // buzzer tone adjustment
- uint8_t rxid[2]; // 16 bit ID for cc2500 to prevent double binds
- };
- /*
- telemetry packet from RX to TX for cc2500
- */
- struct PACKED telem_packet_cc2500 {
- uint8_t length;
- uint8_t type;
- uint8_t txid[2];
- union {
- uint8_t pkt[9];
- struct telem_status_cc2500 status;
- struct telem_firmware fw;
- } payload;
- };
- /*
- autobind packet from TX to RX for cc2500
- */
- struct PACKED autobind_packet_cc2500 {
- uint8_t length;
- uint8_t magic1; // 0xC5
- uint8_t magic2; // 0xA2
- uint8_t txid[2];
- uint8_t txid_inverse[2];
- uint8_t wifi_chan;
- uint8_t pad[3]; // pad to 13 bytes for fixed packet length
- uint8_t crc[2];
- };
- /*
- packet type - controls data field. We have 4 bits, giving 16 possible
- data field types
- */
- enum packet_type {
- PKTYPE_VOLTAGE = 0,
- PKTYPE_YEAR = 1,
- PKTYPE_MONTH = 2,
- PKTYPE_DAY = 3,
- PKTYPE_TELEM_RSSI = 4,
- PKTYPE_TELEM_PPS = 5,
- PKTYPE_BL_VERSION = 6,
- PKTYPE_FW_ACK = 7,
- PKTYPE_RXID1 = 8,
- PKTYPE_RXID2 = 9,
- PKTYPE_NUM_TYPES = 10 // used for modulus
- };
- /*
- skyrocket specific packet from TX to RX for cc2500
- */
- struct PACKED srt_packet {
- uint8_t length; // required for cc2500 FIFO
- uint8_t txid[2];
- uint8_t version:4; // protocol version
- uint8_t pkt_type:4; // packet type
- uint8_t chan1;
- uint8_t chan2;
- uint8_t chan3;
- uint8_t chan4;
- uint8_t chan_high;
- uint8_t data; // data according to pkt_type
- uint8_t buttons; // see channels.h
- uint8_t channr;
- uint8_t chanskip;
- };
|