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 #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 "modules/core/abi.h"
47 
48 #include "pprzlink/messages.h"
50 
51 // for datalink_time hack
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  modules_mcu_init();
82  main_ap_init();
83 }
84 
86 {
88 }
89 
90 #include <stdio.h>
91 #include "modules/gps/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)) {
101  main_ap_event();
102  }
103 #endif
104 
107  main_ap_event();
108  }
109 
111  imu_feed_mag();
112  main_ap_event();
113  }
114 
116  uint32_t now_ts = get_sys_time_usec();
117  float pressure = (float) sensors.baro.value;
118  AbiSendMsgBARO_ABS(BARO_SIM_SENDER_ID, now_ts, pressure);
119  main_ap_event();
120  }
121 
123  AbiSendMsgTEMPERATURE(BARO_SIM_SENDER_ID, (float)sensors.temp.value);
124  main_ap_event();
125  }
126 
127 #if USE_AIRSPEED
129  stateSetAirspeed_f((float)sensors.airspeed.value);
130  AbiSendMsgAIRSPEED(AIRSPEED_NPS_ID, (float)sensors.airspeed.value);
131  main_ap_event();
132  }
133 #endif
134 
135 #if USE_SONAR
137  uint32_t now_ts = get_sys_time_usec();
138  float dist = (float) sensors.sonar.value;
139  if (dist >= 0.0) {
140  AbiSendMsgAGL(AGL_SONAR_NPS_ID, now_ts, dist);
141  }
142 
143 #ifdef SENSOR_SYNC_SEND_SONAR
144  uint16_t foo = 0;
145  DOWNLINK_SEND_SONAR(DefaultChannel, DefaultDevice, &foo, &dist);
146 #endif
147 
148  main_ap_event();
149  }
150 #endif
151 
152 #if USE_GPS
154  gps_feed_value();
155  main_ap_event();
156  }
157 #endif
158 
159  if (nps_bypass_ahrs) {
161  }
162 
163  if (nps_bypass_ins) {
165  }
166 
168 
169  /* scale final motor commands to 0-1 for feeding the fdm */
170  for (uint8_t i = 0; i < NPS_COMMANDS_NB; i++) {
171 #if NPS_NO_MOTOR_MIXING
172  actuators_pprz[i] = autopilot_get_motors_on() ? actuators_pprz[i] : 0;
173  nps_autopilot.commands[i] = (double)actuators_pprz[i] / MAX_PPRZ;
174 #else
176 #endif
177  }
178 }
179 
180 
182 {
183 
184  struct FloatQuat quat_f;
185  QUAT_COPY(quat_f, fdm.ltp_to_body_quat);
186  stateSetNedToBodyQuat_f(&quat_f);
187 
188  struct FloatRates rates_f;
189  RATES_COPY(rates_f, fdm.body_ecef_rotvel);
190  stateSetBodyRates_f(&rates_f);
191 
192 }
193 
195 {
196 
197  struct NedCoor_f ltp_pos;
198  VECT3_COPY(ltp_pos, fdm.ltpprz_pos);
199  stateSetPositionNed_f(&ltp_pos);
200 
201  struct NedCoor_f ltp_speed;
202  VECT3_COPY(ltp_speed, fdm.ltpprz_ecef_vel);
203  stateSetSpeedNed_f(&ltp_speed);
204 
205  struct NedCoor_f ltp_accel;
206  VECT3_COPY(ltp_accel, fdm.ltpprz_ecef_accel);
207  stateSetAccelNed_f(&ltp_accel);
208 
209 }
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:290
#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
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