2016-02-17 21:25:28 -04:00
|
|
|
#pragma once
|
2012-12-14 21:54:26 -04:00
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2012-12-14 21:54:26 -04:00
|
|
|
|
2015-05-04 03:15:12 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
2012-12-14 21:54:26 -04:00
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include "AP_HAL_SITL.h"
|
2015-05-04 03:15:12 -03:00
|
|
|
#include "AP_HAL_SITL_Namespace.h"
|
|
|
|
#include "HAL_SITL_Class.h"
|
2016-01-03 17:22:02 -04:00
|
|
|
#include "RCInput.h"
|
2012-12-14 21:54:26 -04:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/udp.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2015-08-15 19:51:46 -03:00
|
|
|
#include <AP_Baro/AP_Baro.h>
|
|
|
|
#include <AP_InertialSensor/AP_InertialSensor.h>
|
2016-03-10 20:41:18 -04:00
|
|
|
#include <AP_Compass/AP_Compass.h>
|
2015-08-15 19:51:46 -03:00
|
|
|
#include <AP_Terrain/AP_Terrain.h>
|
|
|
|
#include <SITL/SITL.h>
|
2018-07-31 09:32:43 -03:00
|
|
|
#include <SITL/SITL_Input.h>
|
2015-08-15 19:51:46 -03:00
|
|
|
#include <SITL/SIM_Gimbal.h>
|
2015-11-18 21:22:47 -04:00
|
|
|
#include <SITL/SIM_ADSB.h>
|
2018-03-07 21:25:34 -04:00
|
|
|
#include <SITL/SIM_Vicon.h>
|
2016-01-01 02:09:07 -04:00
|
|
|
#include <AP_HAL/utility/Socket.h>
|
2012-12-14 21:54:26 -04:00
|
|
|
|
2015-05-04 03:15:12 -03:00
|
|
|
class HAL_SITL;
|
2012-12-14 21:54:26 -04:00
|
|
|
|
2015-05-04 03:15:12 -03:00
|
|
|
class HALSITL::SITL_State {
|
2016-01-10 02:23:32 -04:00
|
|
|
friend class HALSITL::Scheduler;
|
|
|
|
friend class HALSITL::Util;
|
2016-07-21 21:58:02 -03:00
|
|
|
friend class HALSITL::GPIO;
|
2012-12-14 21:54:26 -04:00
|
|
|
public:
|
|
|
|
void init(int argc, char * const argv[]);
|
|
|
|
|
|
|
|
enum vehicle_type {
|
2015-05-04 21:59:07 -03:00
|
|
|
ArduCopter,
|
|
|
|
APMrover2,
|
2017-10-27 14:24:53 -03:00
|
|
|
ArduPlane,
|
|
|
|
ArduSub
|
2012-12-14 21:54:26 -04:00
|
|
|
};
|
|
|
|
|
2012-12-17 22:34:13 -04:00
|
|
|
int gps_pipe(void);
|
2013-12-21 07:26:30 -04:00
|
|
|
int gps2_pipe(void);
|
2012-12-17 22:34:13 -04:00
|
|
|
ssize_t gps_read(int fd, void *buf, size_t count);
|
2015-06-29 19:55:02 -03:00
|
|
|
uint16_t pwm_output[SITL_NUM_CHANNELS];
|
2016-01-03 17:22:02 -04:00
|
|
|
uint16_t pwm_input[SITL_RC_INPUT_CHANNELS];
|
2017-08-07 09:05:52 -03:00
|
|
|
bool output_ready = false;
|
2015-03-21 11:27:25 -03:00
|
|
|
bool new_rc_input;
|
|
|
|
void loop_hook(void);
|
2015-05-04 21:59:07 -03:00
|
|
|
uint16_t base_port(void) const {
|
|
|
|
return _base_port;
|
|
|
|
}
|
2012-12-17 22:34:13 -04:00
|
|
|
|
2017-08-10 07:23:11 -03:00
|
|
|
// create a file desciptor attached to a virtual device; type of
|
|
|
|
// device is given by name parameter
|
|
|
|
int sim_fd(const char *name, const char *arg);
|
|
|
|
|
2016-05-16 03:51:09 -03:00
|
|
|
bool use_rtscts(void) const {
|
|
|
|
return _use_rtscts;
|
|
|
|
}
|
|
|
|
|
2013-11-28 06:43:25 -04:00
|
|
|
// simulated airspeed, sonar and battery monitor
|
2015-03-21 11:27:25 -03:00
|
|
|
uint16_t sonar_pin_value; // pin 0
|
|
|
|
uint16_t airspeed_pin_value; // pin 1
|
2018-03-09 04:07:50 -04:00
|
|
|
uint16_t airspeed_2_pin_value; // pin 2
|
2015-03-21 11:27:25 -03:00
|
|
|
uint16_t voltage_pin_value; // pin 13
|
|
|
|
uint16_t current_pin_value; // pin 12
|
2018-03-07 22:11:05 -04:00
|
|
|
uint16_t voltage2_pin_value; // pin 15
|
|
|
|
uint16_t current2_pin_value; // pin 14
|
2012-12-18 03:42:48 -04:00
|
|
|
|
2015-11-03 16:59:43 -04:00
|
|
|
// paths for UART devices
|
2018-06-29 04:51:14 -03:00
|
|
|
const char *_uart_path[7] {
|
2015-11-03 16:59:43 -04:00
|
|
|
"tcp:0:wait",
|
|
|
|
"GPS1",
|
|
|
|
"tcp:2",
|
|
|
|
"tcp:3",
|
2016-04-19 21:08:35 -03:00
|
|
|
"GPS2",
|
2017-06-23 16:45:26 -03:00
|
|
|
"tcp:5",
|
2018-06-29 04:51:14 -03:00
|
|
|
"tcp:6",
|
2015-11-03 16:59:43 -04:00
|
|
|
};
|
2019-08-15 03:52:50 -03:00
|
|
|
|
|
|
|
/* parse a home location string */
|
|
|
|
static bool parse_home(const char *home_str,
|
|
|
|
Location &loc,
|
|
|
|
float &yaw_degrees);
|
|
|
|
|
2012-12-14 21:54:26 -04:00
|
|
|
private:
|
|
|
|
void _parse_command_line(int argc, char * const argv[]);
|
2015-05-04 18:08:42 -03:00
|
|
|
void _set_param_default(const char *parm);
|
2012-12-14 21:54:26 -04:00
|
|
|
void _usage(void);
|
2015-11-18 21:22:47 -04:00
|
|
|
void _sitl_setup(const char *home_str);
|
2012-12-14 21:54:26 -04:00
|
|
|
void _setup_fdm(void);
|
|
|
|
void _setup_timer(void);
|
|
|
|
void _setup_adc(void);
|
|
|
|
|
2016-11-19 02:21:54 -04:00
|
|
|
void set_height_agl(void);
|
2017-01-09 05:16:13 -04:00
|
|
|
void _update_rangefinder(float range_value);
|
2016-07-13 10:27:56 -03:00
|
|
|
void _set_signal_handlers(void) const;
|
|
|
|
|
2013-02-16 07:00:16 -04:00
|
|
|
struct gps_data {
|
2015-05-04 21:59:07 -03:00
|
|
|
double latitude;
|
|
|
|
double longitude;
|
|
|
|
float altitude;
|
|
|
|
double speedN;
|
|
|
|
double speedE;
|
|
|
|
double speedD;
|
2017-05-28 01:09:58 -03:00
|
|
|
double yaw;
|
2015-05-04 21:59:07 -03:00
|
|
|
bool have_lock;
|
2013-02-16 07:00:16 -04:00
|
|
|
};
|
|
|
|
|
2015-05-04 21:59:07 -03:00
|
|
|
#define MAX_GPS_DELAY 100
|
2015-03-21 11:27:25 -03:00
|
|
|
gps_data _gps_data[MAX_GPS_DELAY];
|
|
|
|
|
|
|
|
bool _gps_has_basestation_position;
|
|
|
|
gps_data _gps_basestation_data;
|
2017-04-14 04:57:37 -03:00
|
|
|
void _gps_write(const uint8_t *p, uint16_t size, uint8_t instance);
|
2017-03-03 22:39:37 -04:00
|
|
|
void _gps_send_ubx(uint8_t msgid, uint8_t *buf, uint16_t size, uint8_t instance);
|
|
|
|
void _update_gps_ubx(const struct gps_data *d, uint8_t instance);
|
2017-04-14 04:57:37 -03:00
|
|
|
void _update_gps_mtk(const struct gps_data *d, uint8_t instance);
|
|
|
|
void _update_gps_mtk16(const struct gps_data *d, uint8_t instance);
|
|
|
|
void _update_gps_mtk19(const struct gps_data *d, uint8_t instance);
|
2015-03-21 11:27:25 -03:00
|
|
|
uint16_t _gps_nmea_checksum(const char *s);
|
2017-04-14 04:57:37 -03:00
|
|
|
void _gps_nmea_printf(uint8_t instance, const char *fmt, ...);
|
|
|
|
void _update_gps_nmea(const struct gps_data *d, uint8_t instance);
|
|
|
|
void _sbp_send_message(uint16_t msg_type, uint16_t sender_id, uint8_t len, uint8_t *payload, uint8_t instance);
|
|
|
|
void _update_gps_sbp(const struct gps_data *d, uint8_t instance);
|
|
|
|
void _update_gps_sbp2(const struct gps_data *d, uint8_t instance);
|
|
|
|
void _update_gps_file(uint8_t instance);
|
|
|
|
void _update_gps_nova(const struct gps_data *d, uint8_t instance);
|
|
|
|
void _nova_send_message(uint8_t *header, uint8_t headerlength, uint8_t *payload, uint8_t payloadlen, uint8_t instance);
|
2016-05-16 10:09:06 -03:00
|
|
|
uint32_t CRC32Value(uint32_t icrc);
|
|
|
|
uint32_t CalculateBlockCRC32(uint32_t length, uint8_t *buffer, uint32_t crc);
|
2015-03-21 11:27:25 -03:00
|
|
|
|
|
|
|
void _update_gps(double latitude, double longitude, float altitude,
|
2017-05-28 01:09:58 -03:00
|
|
|
double speedN, double speedE, double speedD,
|
|
|
|
double yaw, bool have_lock);
|
2017-05-11 10:38:32 -03:00
|
|
|
void _update_airspeed(float airspeed);
|
2017-04-14 04:57:37 -03:00
|
|
|
void _update_gps_instance(SITL::SITL::GPSType gps_type, const struct gps_data *d, uint8_t instance);
|
2016-09-21 14:15:00 -03:00
|
|
|
void _check_rc_input(void);
|
2018-05-30 07:18:40 -03:00
|
|
|
bool _read_rc_sitl_input();
|
2015-05-02 07:27:33 -03:00
|
|
|
void _fdm_input_local(void);
|
2016-01-01 02:09:07 -04:00
|
|
|
void _output_to_flightgear(void);
|
2018-07-31 09:32:43 -03:00
|
|
|
void _simulator_servos(struct sitl_input &input);
|
2015-03-21 11:27:25 -03:00
|
|
|
void _simulator_output(bool synthetic_clock_mode);
|
|
|
|
uint16_t _airspeed_sensor(float airspeed);
|
|
|
|
uint16_t _ground_sonar();
|
2015-05-02 08:41:13 -03:00
|
|
|
void _fdm_input_step(void);
|
2015-05-04 21:59:07 -03:00
|
|
|
|
2015-05-02 08:41:13 -03:00
|
|
|
void wait_clock(uint64_t wait_time_usec);
|
2015-03-21 11:27:25 -03:00
|
|
|
|
2012-12-14 21:54:26 -04:00
|
|
|
// internal state
|
2015-03-21 11:27:25 -03:00
|
|
|
enum vehicle_type _vehicle;
|
|
|
|
uint16_t _framerate;
|
2015-05-10 08:02:20 -03:00
|
|
|
uint8_t _instance;
|
2015-03-21 11:27:25 -03:00
|
|
|
uint16_t _base_port;
|
|
|
|
pid_t _parent_pid;
|
|
|
|
uint32_t _update_count;
|
|
|
|
|
|
|
|
AP_Baro *_barometer;
|
|
|
|
AP_InertialSensor *_ins;
|
2016-01-10 02:23:32 -04:00
|
|
|
Scheduler *_scheduler;
|
2015-03-21 11:27:25 -03:00
|
|
|
Compass *_compass;
|
2016-06-03 15:07:36 -03:00
|
|
|
#if AP_TERRAIN_AVAILABLE
|
2015-03-21 11:27:25 -03:00
|
|
|
AP_Terrain *_terrain;
|
2016-06-03 15:07:36 -03:00
|
|
|
#endif
|
2015-03-21 11:27:25 -03:00
|
|
|
|
2016-01-03 17:22:02 -04:00
|
|
|
SocketAPM _sitl_rc_in{true};
|
2015-10-22 10:04:42 -03:00
|
|
|
SITL::SITL *_sitl;
|
2016-09-21 14:15:00 -03:00
|
|
|
uint16_t _rcin_port;
|
2016-11-15 10:44:51 -04:00
|
|
|
uint16_t _fg_view_port;
|
2016-11-17 14:05:04 -04:00
|
|
|
uint16_t _irlock_port;
|
2015-03-21 11:27:25 -03:00
|
|
|
float _current;
|
|
|
|
|
|
|
|
bool _synthetic_clock_mode;
|
2015-04-13 03:16:22 -03:00
|
|
|
|
2016-05-16 03:51:09 -03:00
|
|
|
bool _use_rtscts;
|
2016-09-21 14:02:15 -03:00
|
|
|
bool _use_fg_view;
|
2016-05-16 03:51:09 -03:00
|
|
|
|
2018-06-16 22:39:41 -03:00
|
|
|
const char *_fg_address;
|
2015-05-03 19:10:33 -03:00
|
|
|
|
2015-04-13 03:16:22 -03:00
|
|
|
// delay buffer variables
|
|
|
|
static const uint8_t mag_buffer_length = 250;
|
|
|
|
static const uint8_t wind_buffer_length = 50;
|
|
|
|
|
|
|
|
// magnetometer delay buffer variables
|
|
|
|
struct readings_mag {
|
|
|
|
uint32_t time;
|
|
|
|
Vector3f data;
|
|
|
|
};
|
|
|
|
uint8_t store_index_mag;
|
|
|
|
uint32_t last_store_time_mag;
|
|
|
|
VectorN<readings_mag,mag_buffer_length> buffer_mag;
|
|
|
|
uint32_t time_delta_mag;
|
|
|
|
uint32_t delayed_time_mag;
|
|
|
|
|
|
|
|
// airspeed sensor delay buffer variables
|
|
|
|
struct readings_wind {
|
|
|
|
uint32_t time;
|
|
|
|
float data;
|
|
|
|
};
|
|
|
|
uint8_t store_index_wind;
|
|
|
|
uint32_t last_store_time_wind;
|
|
|
|
VectorN<readings_wind,wind_buffer_length> buffer_wind;
|
2018-03-09 04:07:50 -04:00
|
|
|
VectorN<readings_wind,wind_buffer_length> buffer_wind_2;
|
2015-04-13 03:16:22 -03:00
|
|
|
uint32_t time_delta_wind;
|
|
|
|
uint32_t delayed_time_wind;
|
2018-04-30 12:26:15 -03:00
|
|
|
uint32_t wind_start_delay_micros;
|
2015-04-13 03:16:22 -03:00
|
|
|
|
2015-05-02 07:27:33 -03:00
|
|
|
// internal SITL model
|
2015-10-22 10:04:42 -03:00
|
|
|
SITL::Aircraft *sitl_model;
|
2015-05-10 02:36:18 -03:00
|
|
|
|
2015-05-24 23:11:16 -03:00
|
|
|
// simulated gimbal
|
|
|
|
bool enable_gimbal;
|
2015-10-22 10:04:42 -03:00
|
|
|
SITL::Gimbal *gimbal;
|
2015-05-24 23:11:16 -03:00
|
|
|
|
2016-06-15 00:48:43 -03:00
|
|
|
// simulated ADSb
|
2015-11-18 21:22:47 -04:00
|
|
|
SITL::ADSB *adsb;
|
2016-01-01 02:09:07 -04:00
|
|
|
|
2018-03-07 21:25:34 -04:00
|
|
|
// simulated vicon system:
|
|
|
|
SITL::Vicon *vicon;
|
|
|
|
|
2016-01-01 02:09:07 -04:00
|
|
|
// output socket for flightgear viewing
|
|
|
|
SocketAPM fg_socket{true};
|
2015-11-18 21:22:47 -04:00
|
|
|
|
2016-01-06 18:09:40 -04:00
|
|
|
const char *defaults_path = HAL_PARAM_DEFAULTS_PATH;
|
2016-06-20 22:00:36 -03:00
|
|
|
|
|
|
|
const char *_home_str;
|
2012-12-14 21:54:26 -04:00
|
|
|
};
|
|
|
|
|
2015-05-04 03:15:12 -03:00
|
|
|
#endif // CONFIG_HAL_BOARD == HAL_BOARD_SITL
|