Andrew Tridgell
b03c6137a8
Travis: don't do APM2 build in travis any more
...
we no longer require APM2 compatibility for patches in master
10 years ago
Randy Mackay
1608cffe95
Copter: increase failsafe close-to-home to 5m
...
This distance is used when a failsafe is initiated to decide whether to RTL or LAND
10 years ago
squilter
426dab5078
GCS_MAVLink: update severities and remove old enum
10 years ago
squilter
4a51dcc14d
GCS_Console: update severities
10 years ago
squilter
583c087eca
Plane: update severities
10 years ago
squilter
dfc35cca8b
AP_InertialSensor: update severities
10 years ago
squilter
ddda407ff3
AP_Arming: update severities
10 years ago
André Kjellstrup
d4ed30a023
Plane: releasenotes update
10 years ago
Randy Mackay
be603da579
Copter: fix optflow position_ok check
...
We should accept predicted relative horizontal position only when disarmed
10 years ago
Paul Riseborough
21f873662c
AP_NavEKF: Prevent false triggering of optical flow takeoff detection
...
Now that we have a pre-arm check in place to detect bad lidar, the motion check is unnecessary and can false trigger for copters with flexible undercarriages or on uneven ground.
10 years ago
Randy Mackay
53b65675b2
SITL: param change to for copter optflow testing
10 years ago
Randy Mackay
4cdb5bf2bd
Copter: sanity check do-set-home and do-set-ROI location
10 years ago
Randy Mackay
a9c6d34a9e
Tracker: sanity check home location parameters
10 years ago
Randy Mackay
84252405c3
Rover: sanity check ROI target
10 years ago
Randy Mackay
1271e531e2
Mission: sanity check location
10 years ago
Andrew Tridgell
81d4864c10
autotest: added more autotest build logging
10 years ago
Andrew Tridgell
b966f7fc3e
autotest: ensure we start on master branch
10 years ago
Randy Mackay
9ef6abf613
AP_GPS: config file for Ublox M8N
...
This is not directly used by the driver but this directory is where we place the recommended GPS config files
10 years ago
Grant Morphett
50b732d2af
web-firmware: Added an icon and link for AntennaTracker
10 years ago
Randy Mackay
0424b3f93c
Copter: pre-arm check of EKF compass variance
10 years ago
Randy Mackay
920d5cefbb
Copter: always check GPS before arming in Loiter
10 years ago
Tom Pittenger
749c0c190f
AP_Baro - fix BARO_ALT_OFFSET param
...
This param seems to have been un-implemented. This is putting it back in. Adds a meter offset to the calculated altitude form the baro sensors.
Also changes it from int8 to float
10 years ago
Randy Mackay
e4c62811ea
Plane: fix link to BATT parameter descriptions
10 years ago
Randy Mackay
536311744d
Rover: fix link to BATT param descriptions
10 years ago
Randy Mackay
71cc89d107
Copter: add ACCEL_Z_FILT_HZ parameter description
...
Also fixed parameter links to ATC, BATT and MOT libraries
10 years ago
Randy Mackay
bb891a62d3
BattMonitor: fix parameter descriptions
10 years ago
Tom Pittenger
ee9a66bd02
Plane: fix compiler warning re double promotion
10 years ago
Randy Mackay
3db22a9c27
Tracker: update version to 0.7.3
...
This is done because of the text severity change. The GCSs need a unique version from which they can be sure the severities have changed.
10 years ago
squilter
767b4da5b6
Copter: update send text severities
10 years ago
squilter
f1d9b3570c
Tracker: update severity values
10 years ago
squilter
b4cf0ce2bb
Rover: update severity values
10 years ago
squilter
9d3a906602
GCS_Common: accept any type of severity, not just the old enum
10 years ago
Grant Morphett
da37769e33
Copter: Added include guards for Copter.h
10 years ago
Grant Morphett
dda229aecd
Plane: Added include guards for Plane.h
10 years ago
Tom Pittenger
816d1f0e1b
AP_GPS: resolve compiler warning re init order
10 years ago
Tom Pittenger
072d35b9cc
AP_HAL_PX4: remove unused var
10 years ago
fillycheezstake
39dae7a156
Mount: fix for STORM32 serial ver 78e and higher
...
This fixes the structs to be compatible with the changes OlliW made to
the gimbal firmware.
http://www.olliw.eu/storm32bgc-wiki/Serial_Communication
10 years ago
Tom Pittenger
fed50aa5c5
Plane: is_crashed flag gets reset too easily
...
This behavior is excessively paranoid about clearing the flag so now it's extra sticky. You can only clear the is_crashed flag when:
- changing modes
- starting to execute a takeoff wp (if mission/index gets reset while still in auto)
- while in takeoff and throttle is suppressed it's held false
behavior that was removed:
- clear flag when starting to execute any nav cmd (reached next wp)
- if while crashed, you "start flying again" (non-sticky)
10 years ago
Tom Pittenger
e1d566f9e7
Plane: simulator sets is_crashed
...
due to zero-ish vibration in SITL, the is_flying check thinks you're not flying, and this thinks you crashed. This is a SITL specific problem but it brings to light that *if* someone actually had a very low vibration aircraft we don't want to crash them. So, the vibe test has been removed for now. A better test is a variance on the accel
10 years ago
Andrew Tridgell
6caea9e07c
autotest: fixed sim_vehicle.sh with no realpath
10 years ago
mirkix
6f77d3ae98
Linux_HAL_Essentials: Add PRU firmware files. Prevent user to install PRU compiler
10 years ago
Andrew Tridgell
019f2af930
Plane: fixed build with HIL disabled
10 years ago
Leonard Hall
c357cb8f84
Copter: increase default thrust expo to 0.65
10 years ago
Tom Pittenger
f4f111775e
Plane: Log height of zero instead of old value
10 years ago
ziltoid2
b9dd6b7aac
Plane: prevent delayed compass HIL data from disabling compass at system startup only
10 years ago
ziltoid2
0b1a997800
AP_IntertialSensor: don't require acceleration calibration in hil mode
10 years ago
Randy Mackay
43fa9c8ae3
Copter: fix Autotune param descriptions
10 years ago
Randy Mackay
a10a74d498
Copter: AUTOTUNE_MIN_D param to allow controlling minimum D
10 years ago
Lucas De Marchi
a2d17b87c7
Tools: add realpath to ubuntu prerequisites
...
The realpath tool may be missing on a Ubuntu distro and we use it in
sim_vehicle.sh. Make sure it's also installed as part of sitl packages.
On Archlinux it's part of the coreutils package which is part of the
base group. Therefore it's guaranteed to be available.
Fix #2730 .
10 years ago
Randy Mackay
15fc689085
AC_WPNav: remove unused get_wp_radius
10 years ago