Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
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 
24 #include "main_ap.h"
25 #include "nps_sensors.h"
26 #include "nps_radio_control.h"
27 #include "nps_electrical.h"
28 #include "nps_fdm.h"
29 
31 #include "modules/imu/imu.h"
32 #include "mcu_periph/sys_time.h"
33 #include "state.h"
34 #include "modules/ahrs/ahrs.h"
35 #include "modules/ins/ins.h"
36 #include "math/pprz_algebra.h"
37 
38 #ifdef NPS_USE_COMMANDS
39 #include "modules/core/commands.h"
40 #define NPS_NO_MOTOR_MIXING TRUE
41 #endif
42 
43 #ifndef NPS_NO_MOTOR_MIXING
45 #if NPS_COMMANDS_NB != MOTOR_MIXING_NB_MOTOR
46 #warning "NPS_COMMANDS_NB does not match MOTOR_MIXING_NB_MOTOR!"
47 #endif
48 #endif
49 
50 #include "modules/core/abi.h"
51 
52 #include "pprzlink/messages.h"
54 
55 // for datalink_time hack
58 
62 
63 #ifndef NPS_BYPASS_AHRS
64 #define NPS_BYPASS_AHRS FALSE
65 #endif
66 
67 #ifndef NPS_BYPASS_INS
68 #define NPS_BYPASS_INS FALSE
69 #endif
70 
71 #if INDI_RPM_FEEDBACK
72 #error "INDI_RPM_FEEDBACK can not be used in simulation!"
73 #endif
74 
75 void nps_autopilot_init(enum NpsRadioControlType type_rc, int num_rc_script, char *rc_dev)
76 {
78 
79  nps_radio_control_init(type_rc, num_rc_script, rc_dev);
81 
84 
85  modules_mcu_init();
86  main_ap_init();
87 }
88 
90 {
92 }
93 
94 #include <stdio.h>
95 #include "modules/gps/gps.h"
96 
98 {
99 
101 
102 #if RADIO_CONTROL && !RADIO_CONTROL_TYPE_DATALINK
105  main_ap_event();
106  }
107 #endif
108 
111  main_ap_event();
112  }
113 
115  imu_feed_mag();
116  main_ap_event();
117  }
118 
120  uint32_t now_ts = get_sys_time_usec();
121  float pressure = (float) sensors.baro.value;
122  AbiSendMsgBARO_ABS(BARO_SIM_SENDER_ID, now_ts, pressure);
123  main_ap_event();
124  }
125 
127  AbiSendMsgTEMPERATURE(BARO_SIM_SENDER_ID, (float)sensors.temp.value);
128  main_ap_event();
129  }
130 
131 #if USE_AIRSPEED
133  stateSetAirspeed_f((float)sensors.airspeed.value);
134  AbiSendMsgAIRSPEED(AIRSPEED_NPS_ID, (float)sensors.airspeed.value);
135  main_ap_event();
136  }
137 #endif
138 
139 #if USE_SONAR
141  uint32_t now_ts = get_sys_time_usec();
142  float dist = (float) sensors.sonar.value;
143  if (dist >= 0.0) {
144  AbiSendMsgAGL(AGL_SONAR_NPS_ID, now_ts, dist);
145  }
146 
147 #ifdef SENSOR_SYNC_SEND_SONAR
148  uint16_t foo = 0;
149  DOWNLINK_SEND_SONAR(DefaultChannel, DefaultDevice, &foo, &dist);
150 #endif
151 
152  main_ap_event();
153  }
154 #endif
155 
156 #if USE_GPS
158  gps_feed_value();
159  main_ap_event();
160  }
161 #endif
162 
163  if (nps_bypass_ahrs) {
165  }
166 
167  if (nps_bypass_ins) {
169  }
170 
172 
173  /* scale final motor commands to 0-1 for feeding the fdm */
174  for (uint8_t i = 0; i < NPS_COMMANDS_NB; i++) {
175 #if NPS_NO_MOTOR_MIXING
176  #if NPS_USE_COMMANDS
177  commands[i] = autopilot_get_motors_on() ? commands[i] : 0;
178  nps_autopilot.commands[i] = (double)commands[i] / MAX_PPRZ;
179  #else
180  actuators_pprz[i] = autopilot_get_motors_on() ? actuators_pprz[i] : 0;
181  nps_autopilot.commands[i] = (double)actuators_pprz[i] / MAX_PPRZ;
182  #endif
183 #else
185 #endif
186  }
187 }
188 
189 
191 {
192 
193  struct FloatQuat quat_f;
194  QUAT_COPY(quat_f, fdm.ltp_to_body_quat);
195  stateSetNedToBodyQuat_f(&quat_f);
196 
197  struct FloatRates rates_f;
198  RATES_COPY(rates_f, fdm.body_ecef_rotvel);
199  stateSetBodyRates_f(&rates_f);
200 
201 }
202 
204 {
205 
206  struct NedCoor_f ltp_pos;
207  VECT3_COPY(ltp_pos, fdm.ltpprz_pos);
208  stateSetPositionNed_f(&ltp_pos);
209 
210  struct NedCoor_f ltp_speed;
211  VECT3_COPY(ltp_speed, fdm.ltpprz_ecef_vel);
212  stateSetSpeedNed_f(&ltp_speed);
213 
214  struct NedCoor_f ltp_accel;
215  VECT3_COPY(ltp_accel, fdm.ltpprz_ecef_accel);
216  stateSetAccelNed_f(&ltp_accel);
217 
218 }
Main include for ABI (AirBorneInterface).
#define BARO_SIM_SENDER_ID
#define AGL_SONAR_NPS_ID
#define AIRSPEED_NPS_ID
Dispatcher to register actual AHRS implementations.
bool autopilot_get_motors_on(void)
get motors status
Definition: autopilot.c:295
#define sensors(...)
Definition: cc2500_compat.h:68
static void sys_tick_handler(void)
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
Definition: sys_time_arch.c:71
pprz_t commands[COMMANDS_NB]
Definition: commands.c:30
Hardware independent code for commands handling.
if(GpsFixValid() &&e_identification_started)
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)
Definition: pprz_algebra.h:337
#define QUAT_COPY(_qo, _qi)
Definition: pprz_algebra.h:596
#define VECT3_COPY(_a, _b)
Definition: pprz_algebra.h:140
static void stateSetAccelNed_f(struct NedCoor_f *ned_accel)
Set acceleration in NED coordinates (float).
Definition: state.h:1002
static void stateSetNedToBodyQuat_f(struct FloatQuat *ned_to_body_quat)
Set vehicle body attitude from quaternion (float).
Definition: state.h:1093
static void stateSetPositionNed_f(struct NedCoor_f *ned_pos)
Set position from local NED coordinates (float).
Definition: state.h:598
static void stateSetBodyRates_f(struct FloatRates *body_rate)
Set vehicle body angular rate (float).
Definition: state.h:1181
static void stateSetSpeedNed_f(struct NedCoor_f *ned_speed)
Set ground speed in local NED coordinates (float).
Definition: state.h:809
static void stateSetAirspeed_f(float airspeed)
Set airspeed (float).
Definition: state.h:1309
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.
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).
struct MotorMixing motor_mixing
Definition: motor_mixing.c:94
Motor Mixing.
int32_t commands[MOTOR_MIXING_NB_MOTOR]
Definition: motor_mixing.h:37
double commands[NPS_COMMANDS_NB]
Definition: nps_autopilot.h:49
#define NPS_COMMANDS_NB
Number of commands sent to the FDM of NPS.
Definition: nps_autopilot.h:44
struct NpsAutopilot nps_autopilot
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.
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.
Definition: vl53l1_types.h:88
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
Definition: vl53l1_types.h:78
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
Definition: vl53l1_types.h:98