2015-05-22 02:52:45 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
simulator connector for ardupilot version of last_letter
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SIM_last_letter.h"
|
2015-10-22 10:58:33 -03:00
|
|
|
|
2021-10-11 01:59:19 -03:00
|
|
|
#if HAL_SIM_LAST_LETTER_ENABLED
|
|
|
|
|
2015-10-22 10:58:33 -03:00
|
|
|
#include <fcntl.h>
|
2015-05-22 02:52:45 -03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/stat.h>
|
2015-10-22 10:58:33 -03:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2015-05-22 02:52:45 -03:00
|
|
|
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2015-10-22 10:04:42 -03:00
|
|
|
namespace SITL {
|
|
|
|
|
2019-08-15 01:01:24 -03:00
|
|
|
last_letter::last_letter(const char *_frame_str) :
|
|
|
|
Aircraft(_frame_str),
|
2015-05-22 02:52:45 -03:00
|
|
|
last_timestamp_us(0),
|
2018-02-28 00:30:40 -04:00
|
|
|
sock(true)
|
2015-05-22 02:52:45 -03:00
|
|
|
{
|
|
|
|
// try to bind to a specific port so that if we restart ArduPilot
|
|
|
|
// last_letter keeps sending us packets. Not strictly necessary but
|
|
|
|
// useful for debugging
|
|
|
|
sock.bind("127.0.0.1", fdm_port+1);
|
|
|
|
|
|
|
|
sock.reuseaddress();
|
|
|
|
sock.set_blocking(false);
|
|
|
|
|
|
|
|
start_last_letter();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
start last_letter child
|
|
|
|
*/
|
|
|
|
void last_letter::start_last_letter(void)
|
|
|
|
{
|
|
|
|
pid_t child_pid = fork();
|
2016-10-16 11:35:14 -03:00
|
|
|
if (child_pid == 0) {
|
|
|
|
// in child
|
|
|
|
close(0);
|
2016-10-30 10:42:48 -03:00
|
|
|
open("/dev/null", O_RDONLY|O_CLOEXEC);
|
2016-10-16 11:35:14 -03:00
|
|
|
for (uint8_t i=3; i<100; i++) {
|
|
|
|
close(i);
|
|
|
|
}
|
|
|
|
int ret = execlp("roslaunch",
|
|
|
|
"roslaunch",
|
|
|
|
"last_letter",
|
|
|
|
"gazebo.launch",
|
|
|
|
"ArduPlane:=true",
|
2016-10-30 02:24:21 -03:00
|
|
|
nullptr);
|
2016-10-16 11:35:14 -03:00
|
|
|
if (ret != 0) {
|
|
|
|
perror("roslaunch");
|
|
|
|
}
|
|
|
|
exit(1);
|
2015-06-19 03:24:29 -03:00
|
|
|
}
|
2015-05-22 02:52:45 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
send servos
|
|
|
|
*/
|
|
|
|
void last_letter::send_servos(const struct sitl_input &input)
|
|
|
|
{
|
|
|
|
servo_packet pkt;
|
|
|
|
memcpy(pkt.servos, input.servos, sizeof(pkt.servos));
|
|
|
|
sock.sendto(&pkt, sizeof(pkt), "127.0.0.1", fdm_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
receive an update from the FDM
|
|
|
|
This is a blocking function
|
|
|
|
*/
|
|
|
|
void last_letter::recv_fdm(const struct sitl_input &input)
|
|
|
|
{
|
|
|
|
fdm_packet pkt;
|
|
|
|
|
|
|
|
/*
|
|
|
|
we re-send the servo packet every 0.1 seconds until we get a
|
|
|
|
reply. This allows us to cope with some packet loss to the FDM
|
|
|
|
*/
|
|
|
|
while (sock.recv(&pkt, sizeof(pkt), 100) != sizeof(pkt)) {
|
|
|
|
send_servos(input);
|
|
|
|
}
|
|
|
|
|
|
|
|
accel_body = Vector3f(pkt.xAccel, pkt.yAccel, pkt.zAccel);
|
|
|
|
gyro = Vector3f(pkt.rollRate, pkt.pitchRate, pkt.yawRate);
|
|
|
|
velocity_ef = Vector3f(pkt.speedN, pkt.speedE, pkt.speedD);
|
|
|
|
location.lat = pkt.latitude * 1.0e7;
|
|
|
|
location.lng = pkt.longitude * 1.0e7;
|
|
|
|
location.alt = pkt.altitude*1.0e2;
|
|
|
|
dcm.from_euler(pkt.roll, pkt.pitch, pkt.yaw);
|
|
|
|
|
2015-05-22 22:37:21 -03:00
|
|
|
airspeed = pkt.airspeed;
|
2016-04-19 22:48:37 -03:00
|
|
|
airspeed_pitot = pkt.airspeed;
|
2015-05-22 22:24:10 -03:00
|
|
|
|
2016-06-19 22:07:34 -03:00
|
|
|
|
2015-05-22 02:52:45 -03:00
|
|
|
// auto-adjust to last_letter frame rate
|
|
|
|
uint64_t deltat_us = pkt.timestamp_us - last_timestamp_us;
|
|
|
|
time_now_us += deltat_us;
|
|
|
|
|
|
|
|
if (deltat_us < 1.0e4 && deltat_us > 0) {
|
|
|
|
adjust_frame_time(1.0e6/deltat_us);
|
|
|
|
}
|
|
|
|
last_timestamp_us = pkt.timestamp_us;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
update the last_letter simulation by one time step
|
|
|
|
*/
|
|
|
|
void last_letter::update(const struct sitl_input &input)
|
|
|
|
{
|
|
|
|
send_servos(input);
|
|
|
|
recv_fdm(input);
|
|
|
|
sync_frame_time();
|
2016-10-16 11:35:14 -03:00
|
|
|
|
|
|
|
update_position();
|
2017-03-03 06:23:40 -04:00
|
|
|
time_advance();
|
2016-10-16 11:35:14 -03:00
|
|
|
// update magnetic field
|
|
|
|
update_mag_field_bf();
|
2015-05-22 02:52:45 -03:00
|
|
|
}
|
2015-10-22 10:04:42 -03:00
|
|
|
|
|
|
|
} // namespace SITL
|
2021-10-11 01:59:19 -03:00
|
|
|
|
|
|
|
#endif // HAL_SIM_LAST_LETTER_ENABLED
|