/**************************************************************************** * * Copyright (c) 2015 Mark Charlebois. All rights reserved. * Copyright (c) 2016 Anton Matosov. All rights reserved. * Copyright (c) 2018 PX4 Development Team. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name PX4 nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************/ #include #include #include #include #include "simulator.h" #include #include "errno.h" #include #include #include #include #include #include #include #include #include #ifdef ENABLE_UART_RC_INPUT #ifndef B460800 #define B460800 460800 #endif #ifndef B921600 #define B921600 921600 #endif static int openUart(const char *uart_name, int baud); #endif static int _fd; static unsigned char _buf[2048]; static sockaddr_in _srcaddr; static unsigned _addrlen = sizeof(_srcaddr); static hrt_abstime batt_sim_start = 0; const unsigned mode_flag_armed = 128; const unsigned mode_flag_custom = 1; using namespace simulator; using namespace time_literals; mavlink_hil_actuator_controls_t Simulator::actuator_controls_from_outputs(const actuator_outputs_s &actuators) { mavlink_hil_actuator_controls_t msg{}; msg.time_usec = hrt_absolute_time() + hrt_absolute_time_offset(); bool armed = (_vehicle_status.arming_state == vehicle_status_s::ARMING_STATE_ARMED); const float pwm_center = (PWM_DEFAULT_MAX + PWM_DEFAULT_MIN) / 2; int _system_type = _param_mav_type.get(); /* scale outputs depending on system type */ if (_system_type == MAV_TYPE_QUADROTOR || _system_type == MAV_TYPE_HEXAROTOR || _system_type == MAV_TYPE_OCTOROTOR || _system_type == MAV_TYPE_VTOL_DUOROTOR || _system_type == MAV_TYPE_VTOL_QUADROTOR || _system_type == MAV_TYPE_VTOL_TILTROTOR || _system_type == MAV_TYPE_VTOL_RESERVED2) { /* multirotors: set number of rotor outputs depending on type */ unsigned n; switch (_system_type) { case MAV_TYPE_VTOL_DUOROTOR: n = 2; break; case MAV_TYPE_QUADROTOR: case MAV_TYPE_VTOL_QUADROTOR: case MAV_TYPE_VTOL_TILTROTOR: n = 4; break; case MAV_TYPE_VTOL_RESERVED2: // this is the standard VTOL / quad plane with 5 propellers n = 5; break; case MAV_TYPE_HEXAROTOR: n = 6; break; default: n = 8; break; } for (unsigned i = 0; i < 16; i++) { if (actuators.output[i] > PWM_DEFAULT_MIN / 2) { if (i < n) { /* scale PWM out PWM_DEFAULT_MIN..PWM_DEFAULT_MAX us to 0..1 for rotors */ msg.controls[i] = (actuators.output[i] - PWM_DEFAULT_MIN) / (PWM_DEFAULT_MAX - PWM_DEFAULT_MIN); } else { /* scale PWM out PWM_DEFAULT_MIN..PWM_DEFAULT_MAX us to -1..1 for other channels */ msg.controls[i] = (actuators.output[i] - pwm_center) / ((PWM_DEFAULT_MAX - PWM_DEFAULT_MIN) / 2); } } else { /* send 0 when disarmed and for disabled channels */ msg.controls[i] = 0.0f; } } } else { /* fixed wing: scale throttle to 0..1 and other channels to -1..1 */ for (unsigned i = 0; i < 16; i++) { if (actuators.output[i] > PWM_DEFAULT_MIN / 2) { if (i != 4) { /* scale PWM out PWM_DEFAULT_MIN..PWM_DEFAULT_MAX us to -1..1 for normal channels */ msg.controls[i] = (actuators.output[i] - pwm_center) / ((PWM_DEFAULT_MAX - PWM_DEFAULT_MIN) / 2); } else { /* scale PWM out PWM_DEFAULT_MIN..PWM_DEFAULT_MAX us to 0..1 for throttle */ msg.controls[i] = (actuators.output[i] - PWM_DEFAULT_MIN) / (PWM_DEFAULT_MAX - PWM_DEFAULT_MIN); } } else { /* set 0 for disabled channels */ msg.controls[i] = 0.0f; } } } msg.mode = mode_flag_custom; msg.mode |= (armed) ? mode_flag_armed : 0; msg.flags = 0; return msg; } void Simulator::send_controls() { // copy new actuator data if available bool updated = false; orb_check(_actuator_outputs_sub, &updated); if (updated) { actuator_outputs_s actuators{}; orb_copy(ORB_ID(actuator_outputs), _actuator_outputs_sub, &actuators); if (actuators.timestamp > 0) { const mavlink_hil_actuator_controls_t hil_act_control = actuator_controls_from_outputs(actuators); mavlink_message_t message{}; mavlink_msg_hil_actuator_controls_encode(_param_mav_sys_id.get(), _param_mav_comp_id.get(), &message, &hil_act_control); PX4_DEBUG("sending controls t=%ld (%ld)", actuators.timestamp, hil_act_control.time_usec); send_mavlink_message(message); } } } static void fill_rc_input_msg(input_rc_s *rc, mavlink_rc_channels_t *rc_channels) { rc->timestamp = hrt_absolute_time(); rc->timestamp_last_signal = rc->timestamp; rc->channel_count = rc_channels->chancount; rc->rssi = rc_channels->rssi; rc->values[0] = rc_channels->chan1_raw; rc->values[1] = rc_channels->chan2_raw; rc->values[2] = rc_channels->chan3_raw; rc->values[3] = rc_channels->chan4_raw; rc->values[4] = rc_channels->chan5_raw; rc->values[5] = rc_channels->chan6_raw; rc->values[6] = rc_channels->chan7_raw; rc->values[7] = rc_channels->chan8_raw; rc->values[8] = rc_channels->chan9_raw; rc->values[9] = rc_channels->chan10_raw; rc->values[10] = rc_channels->chan11_raw; rc->values[11] = rc_channels->chan12_raw; rc->values[12] = rc_channels->chan13_raw; rc->values[13] = rc_channels->chan14_raw; rc->values[14] = rc_channels->chan15_raw; rc->values[15] = rc_channels->chan16_raw; rc->values[16] = rc_channels->chan17_raw; rc->values[17] = rc_channels->chan18_raw; } void Simulator::update_sensors(const mavlink_hil_sensor_t *imu) { // write sensor data to memory so that drivers can copy data from there RawMPUData mpu = {}; mpu.accel_x = imu->xacc; mpu.accel_y = imu->yacc; mpu.accel_z = imu->zacc; mpu.temp = imu->temperature; mpu.gyro_x = imu->xgyro; mpu.gyro_y = imu->ygyro; mpu.gyro_z = imu->zgyro; write_MPU_data(&mpu); perf_begin(_perf_mpu); RawAccelData accel = {}; accel.x = imu->xacc; accel.y = imu->yacc; accel.z = imu->zacc; write_accel_data(&accel); perf_begin(_perf_accel); RawMagData mag = {}; mag.x = imu->xmag; mag.y = imu->ymag; mag.z = imu->zmag; write_mag_data(&mag); perf_begin(_perf_mag); RawBaroData baro = {}; // Get air pressure and pressure altitude // valid for troposphere (below 11km AMSL) baro.pressure = imu->abs_pressure; baro.temperature = imu->temperature; write_baro_data(&baro); RawAirspeedData airspeed = {}; airspeed.temperature = imu->temperature; // FIXME: diff_pressure needs some noise to pass preflight checks, so we just take the // noise from the gyro. airspeed.diff_pressure = imu->diff_pressure + ((imu->ygyro > 0) ? 0.001f : 0.0f); write_airspeed_data(&airspeed); } void Simulator::update_gps(const mavlink_hil_gps_t *gps_sim) { RawGPSData gps = {}; gps.timestamp = hrt_absolute_time(); gps.lat = gps_sim->lat; gps.lon = gps_sim->lon; gps.alt = gps_sim->alt; gps.eph = gps_sim->eph; gps.epv = gps_sim->epv; gps.vel = gps_sim->vel; gps.vn = gps_sim->vn; gps.ve = gps_sim->ve; gps.vd = gps_sim->vd; gps.cog = gps_sim->cog; gps.fix_type = gps_sim->fix_type; gps.satellites_visible = gps_sim->satellites_visible; write_gps_data((void *)&gps); } void Simulator::handle_message(const mavlink_message_t *msg) { switch (msg->msgid) { case MAVLINK_MSG_ID_HIL_SENSOR: handle_message_hil_sensor(msg); break; case MAVLINK_MSG_ID_HIL_OPTICAL_FLOW: handle_message_optical_flow(msg); break; case MAVLINK_MSG_ID_ODOMETRY: handle_message_odometry(msg); break; case MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE: handle_message_vision_position_estimate(msg); break; case MAVLINK_MSG_ID_DISTANCE_SENSOR: handle_message_distance_sensor(msg); break; case MAVLINK_MSG_ID_HIL_GPS: handle_message_hil_gps(msg); break; case MAVLINK_MSG_ID_RC_CHANNELS: handle_message_rc_channels(msg); break; case MAVLINK_MSG_ID_LANDING_TARGET: handle_message_landing_target(msg); break; case MAVLINK_MSG_ID_HIL_STATE_QUATERNION: handle_message_hil_state_quaternion(msg); break; } } void Simulator::handle_message_distance_sensor(const mavlink_message_t *msg) { mavlink_distance_sensor_t dist; mavlink_msg_distance_sensor_decode(msg, &dist); publish_distance_topic(&dist); } void Simulator::handle_message_hil_gps(const mavlink_message_t *msg) { mavlink_hil_gps_t gps_sim; mavlink_msg_hil_gps_decode(msg, &gps_sim); if (_publish) { //PX4_WARN("FIXME: Need to publish GPS topic. Not done yet."); } update_gps(&gps_sim); } void Simulator::handle_message_hil_sensor(const mavlink_message_t *msg) { mavlink_hil_sensor_t imu; mavlink_msg_hil_sensor_decode(msg, &imu); // set temperature to a decent value imu.temperature = 32.0f; struct timespec ts; abstime_to_ts(&ts, imu.time_usec); px4_clock_settime(CLOCK_MONOTONIC, &ts); hrt_abstime now_us = hrt_absolute_time(); #if 0 // This is just for to debug missing HIL_SENSOR messages. static hrt_abstime last_time = 0; hrt_abstime diff = now_us - last_time; float step = diff / 4000.0f; if (step > 1.1f || step < 0.9f) { PX4_INFO("HIL_SENSOR: imu time_usec: %lu, time_usec: %lu, diff: %lu, step: %.2f", imu.time_usec, now_us, diff, step); } last_time = now_us; #endif if (_publish) { publish_sensor_topics(&imu); } update_sensors(&imu); // battery simulation (limit update to 100Hz) if (hrt_elapsed_time(&_battery_status.timestamp) >= 10_ms) { const float discharge_interval_us = _param_sim_bat_drain.get() * 1000 * 1000; bool armed = (_vehicle_status.arming_state == vehicle_status_s::ARMING_STATE_ARMED); if (!armed || batt_sim_start == 0 || batt_sim_start > now_us) { batt_sim_start = now_us; } float ibatt = -1.0f; // no current sensor in simulation const float minimum_percentage = 0.499f; // change this value if you want to simulate low battery reaction /* Simulate the voltage of a linearly draining battery but stop at the minimum percentage */ float battery_percentage = 1.0f - (now_us - batt_sim_start) / discharge_interval_us; battery_percentage = math::max(battery_percentage, minimum_percentage); float vbatt = math::gradual(battery_percentage, 0.f, 1.f, _battery.empty_cell_voltage(), _battery.full_cell_voltage()); vbatt *= _battery.cell_count(); const float throttle = 0.0f; // simulate no throttle compensation to make the estimate predictable _battery.updateBatteryStatus(now_us, vbatt, ibatt, true, true, 0, throttle, armed, &_battery_status); // publish the battery voltage int batt_multi; orb_publish_auto(ORB_ID(battery_status), &_battery_pub, &_battery_status, &batt_multi, ORB_PRIO_HIGH); } } void Simulator::handle_message_hil_state_quaternion(const mavlink_message_t *msg) { mavlink_hil_state_quaternion_t hil_state; mavlink_msg_hil_state_quaternion_decode(msg, &hil_state); uint64_t timestamp = hrt_absolute_time(); /* attitude */ struct vehicle_attitude_s hil_attitude = {}; { hil_attitude.timestamp = timestamp; matrix::Quatf q(hil_state.attitude_quaternion); q.copyTo(hil_attitude.q); hil_attitude.rollspeed = hil_state.rollspeed; hil_attitude.pitchspeed = hil_state.pitchspeed; hil_attitude.yawspeed = hil_state.yawspeed; // always publish ground truth attitude message int hilstate_multi; orb_publish_auto(ORB_ID(vehicle_attitude_groundtruth), &_attitude_pub, &hil_attitude, &hilstate_multi, ORB_PRIO_HIGH); } /* global position */ struct vehicle_global_position_s hil_gpos = {}; { hil_gpos.timestamp = timestamp; hil_gpos.lat = hil_state.lat / 1E7;//1E7 hil_gpos.lon = hil_state.lon / 1E7;//1E7 hil_gpos.alt = hil_state.alt / 1E3;//1E3 hil_gpos.vel_n = hil_state.vx / 100.0f; hil_gpos.vel_e = hil_state.vy / 100.0f; hil_gpos.vel_d = hil_state.vz / 100.0f; // always publish ground truth attitude message int hil_gpos_multi; orb_publish_auto(ORB_ID(vehicle_global_position_groundtruth), &_gpos_pub, &hil_gpos, &hil_gpos_multi, ORB_PRIO_HIGH); } /* local position */ struct vehicle_local_position_s hil_lpos = {}; { hil_lpos.timestamp = timestamp; double lat = hil_state.lat * 1e-7; double lon = hil_state.lon * 1e-7; if (!_hil_local_proj_inited) { _hil_local_proj_inited = true; map_projection_init(&_hil_local_proj_ref, lat, lon); _hil_ref_timestamp = timestamp; _hil_ref_lat = lat; _hil_ref_lon = lon; _hil_ref_alt = hil_state.alt / 1000.0f; } float x; float y; map_projection_project(&_hil_local_proj_ref, lat, lon, &x, &y); hil_lpos.timestamp = timestamp; hil_lpos.xy_valid = true; hil_lpos.z_valid = true; hil_lpos.v_xy_valid = true; hil_lpos.v_z_valid = true; hil_lpos.x = x; hil_lpos.y = y; hil_lpos.z = _hil_ref_alt - hil_state.alt / 1000.0f; hil_lpos.vx = hil_state.vx / 100.0f; hil_lpos.vy = hil_state.vy / 100.0f; hil_lpos.vz = hil_state.vz / 100.0f; matrix::Eulerf euler = matrix::Quatf(hil_attitude.q); hil_lpos.yaw = euler.psi(); hil_lpos.xy_global = true; hil_lpos.z_global = true; hil_lpos.ref_lat = _hil_ref_lat; hil_lpos.ref_lon = _hil_ref_lon; hil_lpos.ref_alt = _hil_ref_alt; hil_lpos.ref_timestamp = _hil_ref_timestamp; hil_lpos.vxy_max = std::numeric_limits::infinity(); hil_lpos.vz_max = std::numeric_limits::infinity(); hil_lpos.hagl_min = std::numeric_limits::infinity(); hil_lpos.hagl_max = std::numeric_limits::infinity(); // always publish ground truth attitude message int hil_lpos_multi; orb_publish_auto(ORB_ID(vehicle_local_position_groundtruth), &_lpos_pub, &hil_lpos, &hil_lpos_multi, ORB_PRIO_HIGH); } } void Simulator::handle_message_landing_target(const mavlink_message_t *msg) { mavlink_landing_target_t landing_target_mavlink; mavlink_msg_landing_target_decode(msg, &landing_target_mavlink); struct irlock_report_s report = {}; report.timestamp = hrt_absolute_time(); report.signature = landing_target_mavlink.target_num; report.pos_x = landing_target_mavlink.angle_x; report.pos_y = landing_target_mavlink.angle_y; report.size_x = landing_target_mavlink.size_x; report.size_y = landing_target_mavlink.size_y; int irlock_multi; orb_publish_auto(ORB_ID(irlock_report), &_irlock_report_pub, &report, &irlock_multi, ORB_PRIO_HIGH); } void Simulator::handle_message_odometry(const mavlink_message_t *msg) { publish_odometry_topic(msg); } void Simulator::handle_message_optical_flow(const mavlink_message_t *msg) { mavlink_hil_optical_flow_t flow; mavlink_msg_hil_optical_flow_decode(msg, &flow); publish_flow_topic(&flow); } void Simulator::handle_message_rc_channels(const mavlink_message_t *msg) { mavlink_rc_channels_t rc_channels; mavlink_msg_rc_channels_decode(msg, &rc_channels); fill_rc_input_msg(&_rc_input, &rc_channels); // publish message if (_publish) { int rc_multi; orb_publish_auto(ORB_ID(input_rc), &_rc_channels_pub, &_rc_input, &rc_multi, ORB_PRIO_HIGH); } } void Simulator::handle_message_vision_position_estimate(const mavlink_message_t *msg) { publish_odometry_topic(msg); } void Simulator::send_mavlink_message(const mavlink_message_t &aMsg) { uint8_t buf[MAVLINK_MAX_PACKET_LEN]; uint16_t bufLen = 0; bufLen = mavlink_msg_to_send_buffer(buf, &aMsg); ssize_t len; if (_ip == InternetProtocol::UDP) { len = ::sendto(_fd, buf, bufLen, 0, (struct sockaddr *)&_srcaddr, sizeof(_srcaddr)); } else { len = ::send(_fd, buf, bufLen, 0); } if (len <= 0) { PX4_WARN("Failed sending mavlink message: %s", strerror(errno)); } } void Simulator::poll_topics() { // copy new actuator data if available bool updated = false; orb_check(_vehicle_status_sub, &updated); if (updated) { orb_copy(ORB_ID(vehicle_status), _vehicle_status_sub, &_vehicle_status); } } void *Simulator::sending_trampoline(void * /*unused*/) { _instance->send(); return nullptr; } void Simulator::send() { #ifdef __PX4_DARWIN pthread_setname_np("sim_send"); #else pthread_setname_np(pthread_self(), "sim_send"); #endif // Before starting, we ought to send a heartbeat to initiate the SITL // simulator to start sending sensor data which will set the time and // get everything rolling. // Without this, we get stuck at px4_poll which waits for a time update. send_heartbeat(); px4_pollfd_struct_t fds[1] = {}; fds[0].fd = _actuator_outputs_sub; fds[0].events = POLLIN; while (true) { // Wait for up to 100ms for data. int pret = px4_poll(&fds[0], (sizeof(fds) / sizeof(fds[0])), 100); if (pret == 0) { // Timed out, try again. continue; } if (pret < 0) { PX4_ERR("poll error %s", strerror(errno)); continue; } if (fds[0].revents & POLLIN) { // Got new data to read, update all topics. parameters_update(false); poll_topics(); send_controls(); } } } void Simulator::request_hil_state_quaternion() { mavlink_command_long_t cmd_long = {}; mavlink_message_t message = {}; cmd_long.command = MAV_CMD_SET_MESSAGE_INTERVAL; cmd_long.param1 = MAVLINK_MSG_ID_HIL_STATE_QUATERNION; cmd_long.param2 = 5e3; mavlink_msg_command_long_encode(_param_mav_sys_id.get(), _param_mav_comp_id.get(), &message, &cmd_long); send_mavlink_message(message); } void Simulator::send_heartbeat() { mavlink_heartbeat_t hb = {}; mavlink_message_t message = {}; hb.autopilot = 12; hb.base_mode |= (_vehicle_status.arming_state == vehicle_status_s::ARMING_STATE_ARMED) ? 128 : 0; mavlink_msg_heartbeat_encode(_param_mav_sys_id.get(), _param_mav_comp_id.get(), &message, &hb); send_mavlink_message(message); } void Simulator::initialize_sensor_data() { // Write sensor data to memory so that drivers can copy data from there. RawMPUData mpu = {}; mpu.accel_z = CONSTANTS_ONE_G; write_MPU_data(&mpu); RawAccelData accel = {}; accel.z = CONSTANTS_ONE_G; write_accel_data(&accel); RawMagData mag = {}; mag.x = 0.4f; mag.y = 0.0f; mag.z = 0.6f; write_mag_data((void *)&mag); RawBaroData baro = {}; // calculate air pressure from altitude (valid for low altitude) baro.pressure = 120000.0f; baro.temperature = 25.0f; write_baro_data(&baro); RawAirspeedData airspeed {}; write_airspeed_data(&airspeed); } void Simulator::poll_for_MAVLink_messages() { #ifdef __PX4_DARWIN pthread_setname_np("sim_rcv"); #else pthread_setname_np(pthread_self(), "sim_rcv"); #endif struct sockaddr_in _myaddr {}; _myaddr.sin_family = AF_INET; _myaddr.sin_addr.s_addr = htonl(INADDR_ANY); _myaddr.sin_port = htons(_port); if (_ip == InternetProtocol::UDP) { if ((_fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { PX4_ERR("Creating UDP socket failed: %s", strerror(errno)); return; } if (bind(_fd, (struct sockaddr *)&_myaddr, sizeof(_myaddr)) < 0) { PX4_ERR("bind for UDP port %i failed (%i)", _port, errno); return; } PX4_INFO("Waiting for simulator to connect on UDP port %u", _port); while (true) { // Once we receive something, we're most probably good and can carry on. int len = ::recvfrom(_fd, _buf, sizeof(_buf), 0, (struct sockaddr *)&_srcaddr, (socklen_t *)&_addrlen); if (len > 0) { break; } else { system_sleep(1); } } PX4_INFO("Simulator connected on UDP port %u.", _port); } else { PX4_INFO("Waiting for simulator to connect on TCP port %u", _port); while (true) { if ((_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) { PX4_ERR("Creating TCP socket failed: %s", strerror(errno)); return; } int yes = 1; int ret = setsockopt(_fd, IPPROTO_TCP, TCP_NODELAY, (char *) &yes, sizeof(int)); if (ret != 0) { PX4_ERR("setsockopt failed: %s", strerror(errno)); } socklen_t myaddr_len = sizeof(_myaddr); ret = connect(_fd, (struct sockaddr *)&_myaddr, myaddr_len); if (ret == 0) { break; } else { ::close(_fd); system_sleep(1); } } PX4_INFO("Simulator connected on TCP port %u.", _port); } // Create a thread for sending data to the simulator. pthread_t sender_thread; pthread_attr_t sender_thread_attr; pthread_attr_init(&sender_thread_attr); pthread_attr_setstacksize(&sender_thread_attr, PX4_STACK_ADJUSTED(4000)); struct sched_param param; (void)pthread_attr_getschedparam(&sender_thread_attr, ¶m); // sender thread should run immediately after new outputs are available // to send the lockstep update to the simulation param.sched_priority = SCHED_PRIORITY_ACTUATOR_OUTPUTS + 1; (void)pthread_attr_setschedparam(&sender_thread_attr, ¶m); struct pollfd fds[2] = {}; unsigned fd_count = 1; fds[0].fd = _fd; fds[0].events = POLLIN; #ifdef ENABLE_UART_RC_INPUT // setup serial connection to autopilot (used to get manual controls) int serial_fd = openUart(PIXHAWK_DEVICE, PIXHAWK_DEVICE_BAUD); char serial_buf[1024]; if (serial_fd >= 0) { fds[1].fd = serial_fd; fds[1].events = POLLIN; fd_count++; PX4_INFO("Start using %s for radio control input.", PIXHAWK_DEVICE); } else { PX4_INFO("Not using %s for radio control input. Assuming joystick input via MAVLink.", PIXHAWK_DEVICE); } #endif // Subscribe to topics. // Only subscribe to the first actuator_outputs to fill a single HIL_ACTUATOR_CONTROLS. _actuator_outputs_sub = orb_subscribe_multi(ORB_ID(actuator_outputs), 0); _vehicle_status_sub = orb_subscribe(ORB_ID(vehicle_status)); // got data from simulator, now activate the sending thread pthread_create(&sender_thread, &sender_thread_attr, Simulator::sending_trampoline, nullptr); pthread_attr_destroy(&sender_thread_attr); mavlink_status_t mavlink_status = {}; // Request HIL_STATE_QUATERNION for ground truth. request_hil_state_quaternion(); _initialized = true; while (true) { // wait for new mavlink messages to arrive int pret = ::poll(&fds[0], fd_count, 1000); if (pret == 0) { // Timed out. continue; } if (pret < 0) { PX4_ERR("poll error %d, %d", pret, errno); continue; } if (fds[0].revents & POLLIN) { int len = ::recvfrom(_fd, _buf, sizeof(_buf), 0, (struct sockaddr *)&_srcaddr, (socklen_t *)&_addrlen); if (len > 0) { mavlink_message_t msg; for (int i = 0; i < len; i++) { if (mavlink_parse_char(MAVLINK_COMM_0, _buf[i], &msg, &mavlink_status)) { handle_message(&msg); } } } } #ifdef ENABLE_UART_RC_INPUT // got data from PIXHAWK if (fd_count > 1 && fds[1].revents & POLLIN) { len = ::read(serial_fd, serial_buf, sizeof(serial_buf)); if (len > 0) { mavlink_message_t msg; mavlink_status_t serial_status = {}; for (int i = 0; i < len; ++i) { if (mavlink_parse_char(MAVLINK_COMM_1, serial_buf[i], &msg, &serial_status)) { // have a message, handle it bool prev_publish = _publish; set_publish(true); handle_message(&msg); set_publish(prev_publish); } } } } #endif } orb_unsubscribe(_actuator_outputs_sub); orb_unsubscribe(_vehicle_status_sub); } #ifdef ENABLE_UART_RC_INPUT int openUart(const char *uart_name, int baud) { /* process baud rate */ int speed; switch (baud) { case 0: speed = B0; break; case 50: speed = B50; break; case 75: speed = B75; break; case 110: speed = B110; break; case 134: speed = B134; break; case 150: speed = B150; break; case 200: speed = B200; break; case 300: speed = B300; break; case 600: speed = B600; break; case 1200: speed = B1200; break; case 1800: speed = B1800; break; case 2400: speed = B2400; break; case 4800: speed = B4800; break; case 9600: speed = B9600; break; case 19200: speed = B19200; break; case 38400: speed = B38400; break; case 57600: speed = B57600; break; case 115200: speed = B115200; break; case 230400: speed = B230400; break; case 460800: speed = B460800; break; case 921600: speed = B921600; break; default: PX4_ERR("Unsupported baudrate: %d", baud); return -EINVAL; } /* open uart */ int uart_fd = ::open(uart_name, O_RDWR | O_NOCTTY); if (uart_fd < 0) { return uart_fd; } /* Try to set baud rate */ struct termios uart_config = {}; int termios_state; /* Back up the original uart configuration to restore it after exit */ if ((termios_state = tcgetattr(uart_fd, &uart_config)) < 0) { PX4_ERR("tcgetattr failed for %s: %s\n", uart_name, strerror(errno)); ::close(uart_fd); return -1; } /* Set baud rate */ if (cfsetispeed(&uart_config, speed) < 0 || cfsetospeed(&uart_config, speed) < 0) { PX4_ERR("cfsetispeed or cfsetospeed failed for %s: %s\n", uart_name, strerror(errno)); ::close(uart_fd); return -1; } // Make raw cfmakeraw(&uart_config); if ((termios_state = tcsetattr(uart_fd, TCSANOW, &uart_config)) < 0) { PX4_ERR("tcsetattr failed for %s: %s\n", uart_name, strerror(errno)); ::close(uart_fd); return -1; } return uart_fd; } #endif int Simulator::publish_sensor_topics(const mavlink_hil_sensor_t *imu) { uint64_t timestamp = hrt_absolute_time(); if ((imu->fields_updated & 0x1FFF) != 0x1FFF) { PX4_DEBUG("All sensor fields in mavlink HIL_SENSOR packet not updated. Got %08x", imu->fields_updated); } /* static int count=0; static uint64_t last_timestamp=0; count++; if (!(count % 200)) { PX4_WARN("TIME : %lu, dt: %lu", (unsigned long) timestamp,(unsigned long) timestamp - (unsigned long) last_timestamp); PX4_WARN("IMU : %f %f %f",imu->xgyro,imu->ygyro,imu->zgyro); PX4_WARN("ACCEL: %f %f %f",imu->xacc,imu->yacc,imu->zacc); PX4_WARN("MAG : %f %f %f",imu->xmag,imu->ymag,imu->zmag); PX4_WARN("BARO : %f %f %f",imu->abs_pressure,imu->pressure_alt,imu->temperature); } last_timestamp = timestamp; */ /* gyro */ { sensor_gyro_s gyro = {}; gyro.timestamp = timestamp; gyro.device_id = 2293768; gyro.x_raw = imu->xgyro * 1000.0f; gyro.y_raw = imu->ygyro * 1000.0f; gyro.z_raw = imu->zgyro * 1000.0f; gyro.x = imu->xgyro; gyro.y = imu->ygyro; gyro.z = imu->zgyro; gyro.temperature = imu->temperature; int gyro_multi; orb_publish_auto(ORB_ID(sensor_gyro), &_gyro_pub, &gyro, &gyro_multi, ORB_PRIO_HIGH); } /* accelerometer */ { sensor_accel_s accel = {}; accel.timestamp = timestamp; accel.device_id = 1376264; accel.x_raw = imu->xacc / (CONSTANTS_ONE_G / 1000.0f); accel.y_raw = imu->yacc / (CONSTANTS_ONE_G / 1000.0f); accel.z_raw = imu->zacc / (CONSTANTS_ONE_G / 1000.0f); accel.x = imu->xacc; accel.y = imu->yacc; accel.z = imu->zacc; accel.temperature = imu->temperature; int accel_multi; orb_publish_auto(ORB_ID(sensor_accel), &_accel_pub, &accel, &accel_multi, ORB_PRIO_HIGH); } /* magnetometer */ { struct mag_report mag = {}; mag.timestamp = timestamp; mag.device_id = 196616; mag.x_raw = imu->xmag * 1000.0f; mag.y_raw = imu->ymag * 1000.0f; mag.z_raw = imu->zmag * 1000.0f; mag.x = imu->xmag; mag.y = imu->ymag; mag.z = imu->zmag; mag.temperature = imu->temperature; int mag_multi; orb_publish_auto(ORB_ID(sensor_mag), &_mag_pub, &mag, &mag_multi, ORB_PRIO_HIGH); } /* baro */ { sensor_baro_s baro = {}; baro.timestamp = timestamp; baro.device_id = 478459; baro.pressure = imu->abs_pressure; baro.temperature = imu->temperature; int baro_multi; orb_publish_auto(ORB_ID(sensor_baro), &_baro_pub, &baro, &baro_multi, ORB_PRIO_HIGH); } return OK; } int Simulator::publish_flow_topic(const mavlink_hil_optical_flow_t *flow_mavlink) { uint64_t timestamp = hrt_absolute_time(); struct optical_flow_s flow = {}; flow.sensor_id = flow_mavlink->sensor_id; flow.timestamp = timestamp; flow.time_since_last_sonar_update = 0; flow.frame_count_since_last_readout = 0; // ? flow.integration_timespan = flow_mavlink->integration_time_us; flow.ground_distance_m = flow_mavlink->distance; flow.gyro_temperature = flow_mavlink->temperature; flow.gyro_x_rate_integral = flow_mavlink->integrated_xgyro; flow.gyro_y_rate_integral = flow_mavlink->integrated_ygyro; flow.gyro_z_rate_integral = flow_mavlink->integrated_zgyro; flow.pixel_flow_x_integral = flow_mavlink->integrated_x; flow.pixel_flow_y_integral = flow_mavlink->integrated_y; flow.quality = flow_mavlink->quality; /* fill in sensor limits */ float flow_rate_max; param_get(param_find("SENS_FLOW_MAXR"), &flow_rate_max); float flow_min_hgt; param_get(param_find("SENS_FLOW_MINHGT"), &flow_min_hgt); float flow_max_hgt; param_get(param_find("SENS_FLOW_MAXHGT"), &flow_max_hgt); flow.max_flow_rate = flow_rate_max; flow.min_ground_distance = flow_min_hgt; flow.max_ground_distance = flow_max_hgt; /* rotate measurements according to parameter */ int32_t flow_rot_int; param_get(param_find("SENS_FLOW_ROT"), &flow_rot_int); const enum Rotation flow_rot = (Rotation)flow_rot_int; float zeroval = 0.0f; rotate_3f(flow_rot, flow.pixel_flow_x_integral, flow.pixel_flow_y_integral, zeroval); rotate_3f(flow_rot, flow.gyro_x_rate_integral, flow.gyro_y_rate_integral, flow.gyro_z_rate_integral); int flow_multi; orb_publish_auto(ORB_ID(optical_flow), &_flow_pub, &flow, &flow_multi, ORB_PRIO_HIGH); return OK; } int Simulator::publish_odometry_topic(const mavlink_message_t *odom_mavlink) { uint64_t timestamp = hrt_absolute_time(); struct vehicle_odometry_s odom; odom.timestamp = timestamp; const size_t POS_URT_SIZE = sizeof(odom.pose_covariance) / sizeof(odom.pose_covariance[0]); if (odom_mavlink->msgid == MAVLINK_MSG_ID_ODOMETRY) { mavlink_odometry_t odom_msg; mavlink_msg_odometry_decode(odom_mavlink, &odom_msg); /* Dcm rotation matrix from body frame to local NED frame */ matrix::Dcm Rbl; /* since odom.child_frame_id == MAV_FRAME_BODY_FRD, WRT to estimated vehicle body-fixed frame */ /* get quaternion from the msg quaternion itself and build DCM matrix from it */ /* No need to transform the covariance matrices since the non-diagonal values are all zero */ Rbl = matrix::Dcm(matrix::Quatf(odom_msg.q)).I(); /* the linear velocities needs to be transformed to the local NED frame */ matrix::Vector3 linvel_local(Rbl * matrix::Vector3(odom_msg.vx, odom_msg.vy, odom_msg.vz)); /* The position in the local NED frame */ odom.x = odom_msg.x; odom.y = odom_msg.y; odom.z = odom_msg.z; /* The quaternion of the ODOMETRY msg represents a rotation from * NED earth/local frame to XYZ body frame */ matrix::Quatf q(odom_msg.q[0], odom_msg.q[1], odom_msg.q[2], odom_msg.q[3]); q.copyTo(odom.q); odom.local_frame = odom.LOCAL_FRAME_NED; static_assert(POS_URT_SIZE == (sizeof(odom_msg.pose_covariance) / sizeof(odom_msg.pose_covariance[0])), "Odometry Pose Covariance matrix URT array size mismatch"); /* The pose covariance URT */ for (size_t i = 0; i < POS_URT_SIZE; i++) { odom.pose_covariance[i] = odom_msg.pose_covariance[i]; } /* The velocity in the local NED frame */ odom.vx = linvel_local(0); odom.vy = linvel_local(1); odom.vz = linvel_local(2); /* The angular velocity in the body-fixed frame */ odom.rollspeed = odom_msg.rollspeed; odom.pitchspeed = odom_msg.pitchspeed; odom.yawspeed = odom_msg.yawspeed; // velocity_covariance static constexpr size_t VEL_URT_SIZE = sizeof(odom.velocity_covariance) / sizeof(odom.velocity_covariance[0]); static_assert(VEL_URT_SIZE == (sizeof(odom_msg.velocity_covariance) / sizeof(odom_msg.velocity_covariance[0])), "Odometry Velocity Covariance matrix URT array size mismatch"); /* The velocity covariance URT */ for (size_t i = 0; i < VEL_URT_SIZE; i++) { odom.velocity_covariance[i] = odom_msg.velocity_covariance[i]; } } else if (odom_mavlink->msgid == MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE) { mavlink_vision_position_estimate_t ev; mavlink_msg_vision_position_estimate_decode(odom_mavlink, &ev); /* The position in the local NED frame */ odom.x = ev.x; odom.y = ev.y; odom.z = ev.z; /* The euler angles of the VISUAL_POSITION_ESTIMATE msg represent a * rotation from NED earth/local frame to XYZ body frame */ matrix::Quatf q(matrix::Eulerf(ev.roll, ev.pitch, ev.yaw)); q.copyTo(odom.q); odom.local_frame = odom.LOCAL_FRAME_NED; static_assert(POS_URT_SIZE == (sizeof(ev.covariance) / sizeof(ev.covariance[0])), "Vision Position Estimate Pose Covariance matrix URT array size mismatch"); /* The pose covariance URT */ for (size_t i = 0; i < POS_URT_SIZE; i++) { odom.pose_covariance[i] = ev.covariance[i]; } /* The velocity in the local NED frame - unknown */ odom.vx = NAN; odom.vy = NAN; odom.vz = NAN; /* The angular velocity in body-fixed frame - unknown */ odom.rollspeed = NAN; odom.pitchspeed = NAN; odom.yawspeed = NAN; /* The velocity covariance URT - unknown */ odom.velocity_covariance[0] = NAN; } int instance_id = 0; /** @note: frame_id == MAV_FRAME_VISION_NED) */ orb_publish_auto(ORB_ID(vehicle_visual_odometry), &_visual_odometry_pub, &odom, &instance_id, ORB_PRIO_HIGH); return OK; } int Simulator::publish_distance_topic(const mavlink_distance_sensor_t *dist_mavlink) { uint64_t timestamp = hrt_absolute_time(); struct distance_sensor_s dist = {}; dist.timestamp = timestamp; dist.min_distance = dist_mavlink->min_distance / 100.0f; dist.max_distance = dist_mavlink->max_distance / 100.0f; dist.current_distance = dist_mavlink->current_distance / 100.0f; dist.type = dist_mavlink->type; dist.id = dist_mavlink->id; dist.orientation = dist_mavlink->orientation; dist.variance = dist_mavlink->covariance * 1e-4f; // cm^2 to m^2 dist.signal_quality = -1; int dist_multi; orb_publish_auto(ORB_ID(distance_sensor), &_dist_pub, &dist, &dist_multi, ORB_PRIO_HIGH); return OK; } void Simulator::set_publish(const bool publish) { _publish = publish; }