Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
nps_autopilot_rover.c
Go to the documentation of this file.
1/*
2 *
3 * This file is part of paparazzi.
4 *
5 * paparazzi is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
9 *
10 * paparazzi is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with paparazzi; see the file COPYING. If not, write to
17 * the Free Software Foundation, 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
19 */
20
21#include "nps_autopilot.h"
22
23#include "main_ap.h"
24#include "nps_sensors.h"
25#include "nps_radio_control.h"
26#include "nps_electrical.h"
27#include "nps_fdm.h"
28
30#include "modules/imu/imu.h"
31#include "mcu_periph/sys_time.h"
32#include "state.h"
33#include "modules/ahrs/ahrs.h"
34#include "modules/ins/ins.h"
35#include "math/pprz_algebra.h"
36
47#include "modules/core/abi.h"
48
49#include "pprzlink/messages.h"
51
52// for datalink_time hack
55
59
60#ifndef NPS_BYPASS_AHRS
61#define NPS_BYPASS_AHRS FALSE
62#endif
63
64#ifndef NPS_BYPASS_INS
65#define NPS_BYPASS_INS FALSE
66#endif
67
68#if INDI_RPM_FEEDBACK
69#error "INDI_RPM_FEEDBACK can not be used in simulation!"
70#endif
71
86
91
92#include <stdio.h>
93#include "modules/gps/gps.h"
94
95void nps_autopilot_run_step(double time)
96{
97
99
100#if RADIO_CONTROL && !RADIO_CONTROL_TYPE_DATALINK
104 }
105#endif
106
110 }
111
113 imu_feed_mag();
115 }
116
119 float pressure = (float) sensors.baro.value;
122 }
123
127 }
128
129#if USE_AIRSPEED
131 stateSetAirspeed_f(MODULE_NPS_ID, (float)sensors.airspeed.value);
132 AbiSendMsgAIRSPEED(AIRSPEED_NPS_ID, (float)sensors.airspeed.value);
134 }
135#endif
136
137#if USE_SONAR
140 float dist = (float) sensors.sonar.value;
141 if (dist >= 0.0) {
143 }
144
145#ifdef SENSOR_SYNC_SEND_SONAR
146 uint16_t foo = 0;
148#endif
149
151 }
152#endif
153
154#if USE_GPS
158 }
159#endif
160
161 if (nps_bypass_ahrs) {
163 }
164
165 if (nps_bypass_ins) {
167 }
168
170
171 /* feeding the fdm with raw low level commands */
172 for (uint8_t i = 0; i < NPS_COMMANDS_NB; i++) {
175 }
176
177 PRINT_CONFIG_MSG("Using throttle, steering commands because rover's fdm don't have explicit actuators.")
178}
179
180
182{
183
184 struct FloatQuat quat_f;
187
188 struct FloatRates rates_f;
191
192}
193
195{
196
197 struct NedCoor_f ltp_pos;
198 VECT3_COPY(ltp_pos, fdm.ltpprz_pos);
200
201 struct NedCoor_f ltp_speed;
202 VECT3_COPY(ltp_speed, fdm.ltpprz_ecef_vel);
204
205 struct NedCoor_f ltp_accel;
206 VECT3_COPY(ltp_accel, fdm.ltpprz_ecef_accel);
208
209 // Here we make sure that ENU states are recalculated
211}
Main include for ABI (AirBorneInterface).
#define BARO_SIM_SENDER_ID
#define AGL_SONAR_NPS_ID
#define AIRSPEED_NPS_ID
bool autopilot_get_motors_on(void)
get motors status
Definition autopilot.c:295
#define sensors(...)
static void sys_tick_handler(void)
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
Device independent GPS code (interface)
void gps_feed_value(void)
Definition gps_sim_nps.c:32
Roation quaternion.
angular rates
#define RATES_COPY(_a, _b)
#define QUAT_COPY(_qo, _qi)
#define VECT3_COPY(_a, _b)
static void stateSetAccelNed_f(uint16_t id, struct NedCoor_f *ned_accel)
Set acceleration in NED coordinates (float).
Definition state.h:1147
static void stateSetNedToBodyQuat_f(uint16_t id, struct FloatQuat *ned_to_body_quat)
Set vehicle body attitude from quaternion (float).
Definition state.h:1253
static void stateSetPositionNed_f(uint16_t id, struct NedCoor_f *ned_pos)
Set position from local NED coordinates (float).
Definition state.h:718
void stateCalcPositionEnu_i(void)
Definition state.c:329
static void stateSetBodyRates_f(uint16_t id, struct FloatRates *body_rate)
Set vehicle body angular rate (float).
Definition state.h:1346
static void stateSetSpeedNed_f(uint16_t id, struct NedCoor_f *ned_speed)
Set ground speed in local NED coordinates (float).
Definition state.h:947
static void stateSetAirspeed_f(uint16_t id, float airspeed)
Set airspeed (float).
Definition state.h:1486
Inertial Measurement Unit interface.
void imu_feed_mag(void)
Definition imu_nps.c:76
void imu_feed_gyro_accel(void)
Definition imu_nps.c:65
Integrated Navigation System interface.
PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
void main_ap_periodic(void)
Definition main_ap.c:119
void main_ap_event(void)
Definition main_ap.c:146
void main_ap_init(void)
Definition main_ap.c:79
Autopilot main loop.
uint16_t foo
Definition main_demo5.c:58
Hardware independent API for actuators (servos, motor controllers).
double commands[NPS_COMMANDS_NB]
#define NPS_COMMANDS_NB
Number of commands sent to the FDM of NPS.
struct NpsAutopilot nps_autopilot
#ifndef NPS_NO_MOTOR_MIXING #include "modules/actuators/motor_mixing.h"
void nps_autopilot_run_step(double time)
#define NPS_BYPASS_INS
void nps_autopilot_init(enum NpsRadioControlType type_rc, int num_rc_script, char *rc_dev)
bool nps_bypass_ahrs
bool nps_bypass_ins
void sim_overwrite_ins(void)
void nps_autopilot_run_systime_step(void)
void sim_overwrite_ahrs(void)
#define NPS_BYPASS_AHRS
void nps_electrical_init(void)
void nps_electrical_run_step(double time)
Electrical status (bat voltage) for NPS.
struct NedCoor_d ltpprz_ecef_vel
velocity in ltppprz frame, wrt ECEF frame
Definition nps_fdm.h:79
struct NedCoor_d ltpprz_pos
Definition nps_fdm.h:54
struct NedCoor_d ltpprz_ecef_accel
accel in ltppprz frame, wrt ECEF frame
Definition nps_fdm.h:81
struct DoubleQuat ltp_to_body_quat
Definition nps_fdm.h:91
struct DoubleRates body_ecef_rotvel
Definition nps_fdm.h:97
struct NpsFdm fdm
Holds all necessary NPS FDM state information.
void nps_radio_control_init(enum NpsRadioControlType type, int num_script, char *js_dev)
bool nps_radio_control_available(double time)
NpsRadioControlType
bool nps_sensors_airspeed_available(void)
Definition nps_sensors.c:85
bool nps_sensors_sonar_available(void)
Definition nps_sensors.c:76
bool nps_sensors_mag_available(void)
Definition nps_sensors.c:49
bool nps_sensors_gps_available(void)
Definition nps_sensors.c:67
bool nps_sensors_baro_available(void)
Definition nps_sensors.c:58
bool nps_sensors_gyro_available(void)
Definition nps_sensors.c:40
bool nps_sensors_temperature_available(void)
Definition nps_sensors.c:94
#define MAX_PPRZ
Definition paparazzi.h:8
Paparazzi generic algebra macros.
vector in North East Down coordinates Units: meters
Generic interface for radio control modules.
static const ShellCommand commands[]
Definition shell_arch.c:78
void radio_control_feed(void)
Definition ppm_arch.c:42
API to get/set the generic vehicle states.
#define TRUE
Definition std.h:4
Architecture independent timing functions.
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.