5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-01-19 07:08:29 -04:00
ardupilot/libraries/SITL/SITL_Input.h

19 lines
336 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
/*
structure passed in giving servo positions as PWM values in
microseconds
*/
struct sitl_input {
uint16_t servos[16];
struct {
float speed; // m/s
float direction; // degrees 0..360
float turbulence;
float dir_z; //degrees -90..90
} wind;
};