forked from ArduPilot/ardupilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem.cpp
333 lines (270 loc) · 9.07 KB
/
system.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
#include "Rover.h"
static void failsafe_check_static()
{
rover.failsafe_check();
}
void Rover::init_ardupilot()
{
// initialise notify system
notify.init();
notify_mode(control_mode);
battery.init();
#if AP_RPM_ENABLED
// Initialise RPM sensor
rpm_sensor.init();
#endif
#if AP_RSSI_ENABLED
rssi.init();
#endif
g2.windvane.init(serial_manager);
// init baro before we start the GCS, so that the CLI baro test works
barometer.init();
// setup telem slots with serial ports
gcs().setup_uarts();
#if OSD_ENABLED == ENABLED
osd.init();
#endif
// initialise compass
AP::compass().set_log_bit(MASK_LOG_COMPASS);
AP::compass().init();
#if AP_AIRSPEED_ENABLED
airspeed.set_log_bit(MASK_LOG_IMU);
#endif
#if AP_RANGEFINDER_ENABLED
// initialise rangefinder
rangefinder.set_log_rfnd_bit(MASK_LOG_RANGEFINDER);
rangefinder.init(ROTATION_NONE);
#endif
#if HAL_PROXIMITY_ENABLED
// init proximity sensor
g2.proximity.init();
#endif
#if AP_BEACON_ENABLED
// init beacons used for non-gps position estimation
g2.beacon.init();
#endif
// and baro for EKF
barometer.set_log_baro_bit(MASK_LOG_IMU);
barometer.calibrate();
// Do GPS init
gps.set_log_gps_bit(MASK_LOG_GPS);
gps.init();
ins.set_log_raw_bit(MASK_LOG_IMU_RAW);
init_rc_in(); // sets up rc channels deadzone
g2.motors.init(get_frame_type()); // init motors including setting servo out channels ranges
SRV_Channels::enable_aux_servos();
// init wheel encoders
g2.wheel_encoder.init();
#if HAL_TORQEEDO_ENABLED
// init torqeedo motor driver
g2.torqeedo.init();
#endif
#if AP_OPTICALFLOW_ENABLED
// initialise optical flow sensor
optflow.init(MASK_LOG_OPTFLOW);
#endif // AP_OPTICALFLOW_ENABLED
#if AP_RELAY_ENABLED
relay.init();
#endif
#if HAL_MOUNT_ENABLED
// initialise camera mount
camera_mount.init();
#endif
#if AP_CAMERA_ENABLED
// initialise camera
camera.init();
#endif
#if AC_PRECLAND_ENABLED
// initialise precision landing
init_precland();
#endif
/*
setup the 'main loop is dead' check. Note that this relies on
the RC library being initialised.
*/
hal.scheduler->register_timer_failsafe(failsafe_check_static, 1000);
// initialize SmartRTL
g2.smart_rtl.init();
#if AP_OAPATHPLANNER_ENABLED
// initialise object avoidance
g2.oa.init();
#endif
set_mode(mode_initializing, ModeReason::INITIALISED);
startup_INS();
#if AP_MISSION_ENABLED
// initialise mission library
mode_auto.mission.init();
#endif
// initialise AP_Logger library
#if HAL_LOGGING_ENABLED
logger.setVehicle_Startup_Writer(
FUNCTOR_BIND(&rover, &Rover::Log_Write_Vehicle_Startup_Messages, void)
);
#endif
Mode *initial_mode = mode_from_mode_num((enum Mode::Number)g.initial_mode.get());
if (initial_mode == nullptr) {
initial_mode = &mode_initializing;
}
set_mode(*initial_mode, ModeReason::INITIALISED);
// initialise rc channels
rc().convert_options(RC_Channel::AUX_FUNC::ARMDISARM_UNUSED, RC_Channel::AUX_FUNC::ARMDISARM);
rc().convert_options(RC_Channel::AUX_FUNC::SAVE_TRIM, RC_Channel::AUX_FUNC::TRIM_TO_CURRENT_SERVO_RC);
rc().init();
rover.g2.sailboat.init();
// boat should loiter after completing a mission to avoid drifting off
if (is_boat()) {
rover.g2.mis_done_behave.set_default(uint8_t(ModeAuto::DoneBehaviour::LOITER));
}
// flag that initialisation has completed
initialised = true;
}
// update the ahrs flyforward setting which can allow
// the vehicle's movements to be used to estimate heading
void Rover::update_ahrs_flyforward()
{
bool flyforward = false;
// boats never use movement to estimate heading
if (!is_boat()) {
// throttle threshold is 15% or 1/2 cruise throttle
bool throttle_over_thresh = g2.motors.get_throttle() > MIN(g.throttle_cruise * 0.50f, 15.0f);
// desired speed threshold of 1m/s
bool desired_speed_over_thresh = g2.attitude_control.speed_control_active() && (g2.attitude_control.get_desired_speed() > 0.5f);
if (throttle_over_thresh || (is_positive(g2.motors.get_throttle()) && desired_speed_over_thresh)) {
uint32_t now = AP_HAL::millis();
// if throttle over threshold start timer
if (flyforward_start_ms == 0) {
flyforward_start_ms = now;
}
// if throttle over threshold for 2 seconds set flyforward to true
flyforward = (now - flyforward_start_ms > 2000);
} else {
// reset timer
flyforward_start_ms = 0;
}
}
ahrs.set_fly_forward(flyforward);
}
// Check if this mode can be entered from the GCS
bool Rover::gcs_mode_enabled(const Mode::Number mode_num) const
{
// List of modes that can be blocked, index is bit number in parameter bitmask
static const uint8_t mode_list [] {
(uint8_t)Mode::Number::MANUAL,
(uint8_t)Mode::Number::ACRO,
(uint8_t)Mode::Number::STEERING,
(uint8_t)Mode::Number::LOITER,
(uint8_t)Mode::Number::FOLLOW,
(uint8_t)Mode::Number::SIMPLE,
(uint8_t)Mode::Number::CIRCLE,
(uint8_t)Mode::Number::AUTO,
(uint8_t)Mode::Number::RTL,
(uint8_t)Mode::Number::SMART_RTL,
(uint8_t)Mode::Number::GUIDED,
#if MODE_DOCK_ENABLED == ENABLED
(uint8_t)Mode::Number::DOCK
#endif
};
return !block_GCS_mode_change((uint8_t)mode_num, mode_list, ARRAY_SIZE(mode_list));
}
bool Rover::set_mode(Mode &new_mode, ModeReason reason)
{
if (control_mode == &new_mode) {
// don't switch modes if we are already in the correct mode.
return true;
}
// Check if GCS mode change is disabled via parameter
if ((reason == ModeReason::GCS_COMMAND) && !gcs_mode_enabled((Mode::Number)new_mode.mode_number())) {
gcs().send_text(MAV_SEVERITY_NOTICE,"Mode change to %s denied, GCS entry disabled (FLTMODE_GCSBLOCK)", new_mode.name4());
return false;
}
Mode &old_mode = *control_mode;
if (!new_mode.enter()) {
// Log error that we failed to enter desired flight mode
LOGGER_WRITE_ERROR(LogErrorSubsystem::FLIGHT_MODE,
LogErrorCode(new_mode.mode_number()));
gcs().send_text(MAV_SEVERITY_WARNING, "Flight mode change failed");
return false;
}
control_mode = &new_mode;
#if AP_FENCE_ENABLED
// pilot requested flight mode change during a fence breach indicates pilot is attempting to manually recover
// this flight mode change could be automatic (i.e. fence, battery, GPS or GCS failsafe)
// but it should be harmless to disable the fence temporarily in these situations as well
fence.manual_recovery_start();
#endif
#if AP_CAMERA_ENABLED
camera.set_is_auto_mode(control_mode->mode_number() == Mode::Number::AUTO);
#endif
old_mode.exit();
control_mode_reason = reason;
#if HAL_LOGGING_ENABLED
logger.Write_Mode((uint8_t)control_mode->mode_number(), control_mode_reason);
#endif
gcs().send_message(MSG_HEARTBEAT);
notify_mode(control_mode);
return true;
}
bool Rover::set_mode(const uint8_t new_mode, ModeReason reason)
{
static_assert(sizeof(Mode::Number) == sizeof(new_mode), "The new mode can't be mapped to the vehicles mode number");
return rover.set_mode(static_cast<Mode::Number>(new_mode), reason);
}
bool Rover::set_mode(Mode::Number new_mode, ModeReason reason)
{
Mode *mode = rover.mode_from_mode_num(new_mode);
if (mode == nullptr) {
notify_no_such_mode((uint8_t)new_mode);
return false;
}
return rover.set_mode(*mode, reason);
}
void Rover::startup_INS(void)
{
gcs().send_text(MAV_SEVERITY_INFO, "Beginning INS calibration. Do not move vehicle");
hal.scheduler->delay(100);
ahrs.init();
// say to EKF that rover only move by going forward
ahrs.set_fly_forward(true);
ahrs.set_vehicle_class(AP_AHRS::VehicleClass::GROUND);
ins.init(scheduler.get_loop_rate_hz());
ahrs.reset();
}
// update notify with mode change
void Rover::notify_mode(const Mode *mode)
{
AP_Notify::flags.autopilot_mode = mode->is_autopilot_mode();
notify.flags.flight_mode = (uint8_t)mode->mode_number();
notify.set_flight_mode_str(mode->name4());
}
/*
check a digital pin for high,low (1/0)
*/
uint8_t Rover::check_digital_pin(uint8_t pin)
{
// ensure we are in input mode
hal.gpio->pinMode(pin, HAL_GPIO_INPUT);
// enable pullup
hal.gpio->write(pin, 1);
return hal.gpio->read(pin);
}
#if HAL_LOGGING_ENABLED
/*
should we log a message type now?
*/
bool Rover::should_log(uint32_t mask)
{
return logger.should_log(mask);
}
#endif
// returns true if vehicle is a boat
// this affects whether the vehicle tries to maintain position after reaching waypoints
bool Rover::is_boat() const
{
return ((enum frame_class)g2.frame_class.get() == FRAME_BOAT);
}
#include <AP_Avoidance/AP_Avoidance.h>
#include <AP_ADSB/AP_ADSB.h>
#if HAL_ADSB_ENABLED
// dummy method to avoid linking AP_Avoidance
AP_Avoidance *AP::ap_avoidance() { return nullptr; }
#endif