Paparazzi UAS  v5.14.0_stable-0-g3f680d1
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
nps_autopilot_rotorcraft.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2009 Antoine Drouin <poinix@gmail.com>
3  *
4  * This file is part of paparazzi.
5  *
6  * paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with paparazzi; see the file COPYING. If not, write to
18  * the Free Software Foundation, 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 
22 #include "nps_autopilot.h"
23 
25 #include "nps_sensors.h"
26 #include "nps_radio_control.h"
27 #include "nps_electrical.h"
28 #include "nps_fdm.h"
29 
31 #include "subsystems/imu.h"
32 #include "mcu_periph/sys_time.h"
33 #include "state.h"
34 #include "subsystems/ahrs.h"
35 #include "subsystems/ins.h"
36 #include "math/pprz_algebra.h"
37 
38 #ifndef NPS_NO_MOTOR_MIXING
40 
41 #if NPS_COMMANDS_NB != MOTOR_MIXING_NB_MOTOR
42 #warning "NPS_COMMANDS_NB does not match MOTOR_MIXING_NB_MOTOR!"
43 #endif
44 #endif
45 
46 #include "subsystems/abi.h"
47 
48 #include "pprzlink/messages.h"
50 
51 // for datalink_time hack
53 #include "subsystems/actuators.h"
54 
58 
59 #ifndef NPS_BYPASS_AHRS
60 #define NPS_BYPASS_AHRS FALSE
61 #endif
62 
63 #ifndef NPS_BYPASS_INS
64 #define NPS_BYPASS_INS FALSE
65 #endif
66 
67 #if INDI_RPM_FEEDBACK
68 #error "INDI_RPM_FEEDBACK can not be used in simulation!"
69 #endif
70 
71 void nps_autopilot_init(enum NpsRadioControlType type_rc, int num_rc_script, char *rc_dev)
72 {
74 
75  nps_radio_control_init(type_rc, num_rc_script, rc_dev);
77 
80 
81  main_init();
82 
83 }
84 
86 {
88 }
89 
90 #include <stdio.h>
91 #include "subsystems/gps.h"
92 
93 void nps_autopilot_run_step(double time)
94 {
95 
97 
98 #if RADIO_CONTROL && !RADIO_CONTROL_TYPE_DATALINK
99  if (nps_radio_control_available(time)) {
100  radio_control_feed();
101  main_event();
102  }
103 #endif
104 
107  main_event();
108  }
109 
111  imu_feed_mag();
112  main_event();
113  }
114 
116  float pressure = (float) sensors.baro.value;
117  AbiSendMsgBARO_ABS(BARO_SIM_SENDER_ID, pressure);
118  main_event();
119  }
120 
122  AbiSendMsgTEMPERATURE(BARO_SIM_SENDER_ID, (float)sensors.temp.value);
123  }
124 
125 #if USE_AIRSPEED
128  }
129 #endif
130 
131 #if USE_SONAR
133  float dist = (float) sensors.sonar.value;
134  AbiSendMsgAGL(AGL_SONAR_NPS_ID, dist);
135 
136 #ifdef SENSOR_SYNC_SEND_SONAR
137  uint16_t foo = 0;
138  DOWNLINK_SEND_SONAR(DefaultChannel, DefaultDevice, &foo, &dist);
139 #endif
140 
141  main_event();
142  }
143 #endif
144 
145 #if USE_GPS
147  gps_feed_value();
148  main_event();
149  }
150 #endif
151 
152  if (nps_bypass_ahrs) {
154  }
155 
156  if (nps_bypass_ins) {
158  }
159 
161 
162  /* scale final motor commands to 0-1 for feeding the fdm */
163  for (uint8_t i = 0; i < NPS_COMMANDS_NB; i++) {
164 #if NPS_NO_MOTOR_MIXING
165  actuators_pprz[i] = autopilot_get_motors_on() ? actuators_pprz[i] : 0;
166  nps_autopilot.commands[i] = (double)actuators_pprz[i] / MAX_PPRZ;
167 #else
169 #endif
170  }
171 }
172 
173 
175 {
176 
177  struct FloatQuat quat_f;
178  QUAT_COPY(quat_f, fdm.ltp_to_body_quat);
179  stateSetNedToBodyQuat_f(&quat_f);
180 
181  struct FloatRates rates_f;
182  RATES_COPY(rates_f, fdm.body_ecef_rotvel);
183  stateSetBodyRates_f(&rates_f);
184 
185 }
186 
188 {
189 
190  struct NedCoor_f ltp_pos;
191  VECT3_COPY(ltp_pos, fdm.ltpprz_pos);
192  stateSetPositionNed_f(&ltp_pos);
193 
194  struct NedCoor_f ltp_speed;
195  VECT3_COPY(ltp_speed, fdm.ltpprz_ecef_vel);
196  stateSetSpeedNed_f(&ltp_speed);
197 
198  struct NedCoor_f ltp_accel;
199  VECT3_COPY(ltp_accel, fdm.ltpprz_ecef_accel);
200  stateSetAccelNed_f(&ltp_accel);
201 
202 }
unsigned short uint16_t
Definition: types.h:16
#define NPS_BYPASS_INS
struct NedCoor_d ltpprz_ecef_accel
accel in ltppprz frame, wrt ECEF frame
Definition: nps_fdm.h:81
Dispatcher to register actual AHRS implementations.
bool nps_sensors_gps_available(void)
Definition: nps_sensors.c:70
struct DoubleRates body_ecef_rotvel
Definition: nps_fdm.h:97
#define NPS_BYPASS_AHRS
struct NpsFdm fdm
Holds all necessary NPS FDM state information.
void nps_electrical_run_step(double time)
bool nps_sensors_mag_available(void)
Definition: nps_sensors.c:52
#define NPS_COMMANDS_NB
Number of commands sent to the FDM of NPS.
Definition: nps_autopilot.h:18
bool autopilot_get_motors_on(void)
get motors status
Definition: autopilot.c:211
#define VECT3_COPY(_a, _b)
Definition: pprz_algebra.h:140
bool nps_sensors_baro_available(void)
Definition: nps_sensors.c:61
Main include for ABI (AirBorneInterface).
void sim_overwrite_ahrs(void)
double value
airspeed reading in meters/second
struct NpsSensorBaro baro
Definition: nps_sensors.h:21
static void stateSetNedToBodyQuat_f(struct FloatQuat *ned_to_body_quat)
Set vehicle body attitude from quaternion (float).
Definition: state.h:1093
bool nps_bypass_ahrs
NpsRadioControlType
Integrated Navigation System interface.
STATIC_INLINE void handle_periodic_tasks(void)
Definition: main_ap.c:202
struct NpsSensorSonar sonar
Definition: nps_sensors.h:23
Rotorcraft main loop.
struct NedCoor_d ltpprz_pos
Definition: nps_fdm.h:54
Roation quaternion.
#define AGL_SONAR_NPS_ID
#define QUAT_COPY(_qo, _qi)
Definition: pprz_algebra.h:596
struct NpsAutopilot nps_autopilot
void nps_autopilot_run_systime_step(void)
static void stateSetSpeedNed_f(struct NedCoor_f *ned_speed)
Set ground speed in local NED coordinates (float).
Definition: state.h:809
Hardware independent API for actuators (servos, motor controllers).
#define TRUE
Definition: std.h:4
void imu_feed_mag(void)
Definition: imu_nps.c:53
static void sys_tick_handler(void)
void nps_autopilot_run_step(double time)
double value
temperature in degrees Celcius
vector in North East Down coordinates Units: meters
Architecture independent timing functions.
void sim_overwrite_ins(void)
void nps_electrical_init(void)
static void main_event(void)
Definition: uart_tunnel.c:85
Paparazzi generic algebra macros.
Device independent GPS code (interface)
void nps_radio_control_init(enum NpsRadioControlType type, int num_script, char *js_dev)
uint16_t foo
Definition: main_demo5.c:59
struct NpsSensors sensors
Definition: nps_sensors.c:6
double value
sonar reading in meters
Inertial Measurement Unit interface.
static void stateSetPositionNed_f(struct NedCoor_f *ned_pos)
Set position from local NED coordinates (float).
Definition: state.h:598
void gps_feed_value(void)
Definition: gps_sim_nps.c:31
void imu_feed_gyro_accel(void)
Definition: imu_nps.c:40
bool nps_bypass_ins
bool nps_sensors_temperature_available(void)
Definition: nps_sensors.c:97
#define BARO_SIM_SENDER_ID
unsigned char uint8_t
Definition: types.h:14
API to get/set the generic vehicle states.
bool nps_sensors_airspeed_available(void)
Definition: nps_sensors.c:88
static void main_init(void)
bool nps_radio_control_available(double time)
Electrical status (bat voltage) for NPS.
static void stateSetAirspeed_f(float airspeed)
Set airspeed (float).
Definition: state.h:1309
bool nps_sensors_gyro_available(void)
Definition: nps_sensors.c:43
double value
pressure in Pascal
struct MotorMixing motor_mixing
Definition: motor_mixing.c:94
struct NpsSensorAirspeed airspeed
Definition: nps_sensors.h:24
struct NedCoor_d ltpprz_ecef_vel
velocity in ltppprz frame, wrt ECEF frame
Definition: nps_fdm.h:79
#define RATES_COPY(_a, _b)
Definition: pprz_algebra.h:337
#define MAX_PPRZ
Definition: paparazzi.h:8
int32_t commands[MOTOR_MIXING_NB_MOTOR]
Definition: motor_mixing.h:37
Motor Mixing.
static void stateSetBodyRates_f(struct FloatRates *body_rate)
Set vehicle body angular rate (float).
Definition: state.h:1181
bool nps_sensors_sonar_available(void)
Definition: nps_sensors.c:79
static void stateSetAccelNed_f(struct NedCoor_f *ned_accel)
Set acceleration in NED coordinates (float).
Definition: state.h:1002
struct DoubleQuat ltp_to_body_quat
Definition: nps_fdm.h:91
double commands[NPS_COMMANDS_NB]
Definition: nps_autopilot.h:23
angular rates
struct NpsSensorTemperature temp
Definition: nps_sensors.h:25
void nps_autopilot_init(enum NpsRadioControlType type_rc, int num_rc_script, char *rc_dev)