mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
12 lines
247 B
C
12 lines
247 B
C
#pragma once
|
|
|
|
#define RCINPUT_UDP_NUM_CHANNELS 8
|
|
#define RCINPUT_UDP_VERSION 2
|
|
|
|
struct __attribute__((packed)) rc_udp_packet {
|
|
uint32_t version;
|
|
uint64_t timestamp_us;
|
|
uint16_t sequence;
|
|
uint16_t pwms[RCINPUT_UDP_NUM_CHANNELS];
|
|
};
|