Thomas Gubler
b500cfb1f1
mc att ctl: remove code which is already in base class
2014-12-08 14:21:04 +01:00
Thomas Gubler
996438aafe
fix base and sim file descriptions
2014-12-05 10:33:14 +01:00
Thomas Gubler
92135d155d
Merge remote-tracking branch 'upstream/master' into ROS_shared_lib_base_class
2014-12-05 09:34:22 +01:00
Thomas Gubler
0f1a7e7b5b
whitespace
2014-12-05 09:33:26 +01:00
Thomas Gubler
ebcad32e37
mc att: more cleanup between base and main class
2014-12-05 09:30:34 +01:00
Thomas Gubler
dfd2098e04
re-add hardcoded parameters for euroc
2014-12-05 09:30:28 +01:00
Thomas Gubler
1c19d75cf4
mc att control: ran fix code style script
2014-12-05 09:03:49 +01:00
Thomas Gubler
eafc4b5f9e
mc att control: make the main app use the base class, move euroc functions into own class
2014-12-05 09:03:41 +01:00
Simon Wilks
f3fb32bc47
Unsubscribe from the topic.
2014-12-03 10:43:17 +01:00
Simon Wilks
7a344b9337
Display ESC data in the status output
2014-12-03 10:30:49 +01:00
Lorenz Meier
d5debc2f42
Merge master into attitude EKF update
2014-12-02 15:12:11 +01:00
Lorenz Meier
8d1a0700f2
Merge pull request #1475 from hsteinhaus/gps_time
...
Corrected time_gps_usec values description.
2014-12-02 12:30:46 +01:00
Andreas Antener
45c52b51ee
move natural position to the front of the pending list for QGC
2014-12-02 01:42:12 +01:00
Andreas Antener
b1bd813978
swap fron/back > the "side" being measured is facing downwards
2014-12-02 01:37:54 +01:00
Andreas Antener
3ce7abe9d8
use consistent orientation naming in messages
2014-12-02 01:01:35 +01:00
Lorenz Meier
e51f72000b
Fix RGB led stop command
2014-12-01 11:27:59 +01:00
Holger Steinhaus
f619dba6f9
Corrected time_gps_usec values description.
...
Fixes #1474
2014-11-28 15:36:30 +01:00
Lorenz Meier
9d986f5df3
HMC5883: Better status reporting
2014-11-26 18:22:18 +01:00
Lorenz Meier
6200a3e3a5
Added TeraRanger one sensor
2014-11-26 07:56:54 +01:00
Lorenz Meier
cbcd1ea1d1
Merged PX4Flow driver changes
2014-11-26 07:43:19 +01:00
Andrew Tridgell
4724c05047
airspeed: use _retries=2 for I2C retries once initialised
...
airspeed sensors often need to be on longer cables due to having to be
outside the prop wash.
2014-11-26 07:35:32 +01:00
Andrew Tridgell
8e932cec10
systemcmds: added reflect command for USB testing
2014-11-26 07:35:06 +01:00
Lorenz Meier
ef76a7cf27
Merge branch 'pullrequest-px4io' of github.com:tridge/Firmware
2014-11-26 07:32:06 +01:00
Andrew Tridgell
c906c21238
px4io: prevent use of uninitialised memory in io_set_arming_state()
...
the vehicle may not have setup a control_mode. We need to check the
return of orb_copy() to ensure we are getting initialised values
2014-11-26 11:39:41 +11:00
Andrew Tridgell
c0b47d6a74
px4io: only check SAFETY_OFF for allowing RC config changes and reboot
...
If we check OUTPUTS_ARMED then we can't update trim values and scaling
in flight, as there is no way to clear OUTPUTS_ARMED.
If safety is on then it should be perfectly safe to update the mixer
and RC config or reboot for fw update
2014-11-26 11:39:41 +11:00
Andrew Tridgell
29f000dc31
px4io: fixed error returns to be negative
...
follow standard conventions
2014-11-26 11:39:41 +11:00
Andrew Tridgell
809500cfcd
px4io: fixed RC_CONFIG channel limit check
...
number of channels is the right test, not number of actuators
2014-11-26 11:39:41 +11:00
Andrew Tridgell
7ae4f6d97e
uavcan: added add_poll_fd() helper function
...
this makes the code clearer and avoids repeated code
2014-11-26 08:41:32 +11:00
Andrew Tridgell
a7a68c88a2
uavcan: show ESC output values in uavcan status, and add arm/disarm
...
this makes "uavcan status" show the current output values, which is
useful for debugging. It also adds "uavcan arm" and "uavcan disarm"
commands, which are very useful for re-arming after a motor test.
2014-11-26 08:32:47 +11:00
Andrew Tridgell
724ec0ec8b
uavcan: handle all ESC output in one place
...
moving all the ESC output handling to one place allows the limits on
actuator values to apply to all types of inputs, and will make it
easier to expand "uavcan status" to show actuator values
2014-11-26 08:32:47 +11:00
Andrew Tridgell
8e44ec2e3b
uavcan: prevent crash in ESC driver
...
passing in more than 8 actuators would crash the ESC driver. We need
to check again the array size of the _esc_status.esc, which is
CONNECTED_ESC_MAX
2014-11-26 08:32:47 +11:00
Andrew Tridgell
ead0458e97
uavcan: don't force motors to keep spinning at zero throttle
...
Forcing motors to keep spinning when armed should be a policy decision
up at the vehicle type level, not hard coded down in the ESC
driver. It isn't appropriate for fixed wing or ground vehicles for
example.
We could add an ioctl to enable "spin when armed" if just setting a
small value in the vehicle code is inconvenient
2014-11-26 08:32:47 +11:00
Andrew Tridgell
ecc7a3cbb4
motor_test: prevent use of uninitialised test_motor orb handle
...
stack variables are not initialised to zero
2014-11-26 08:32:47 +11:00
Andrew Tridgell
b830137ec8
uavcan: added support for actuator_direct ORB topic
...
this watches the actuator_direct topic and uses it to allow for direct
output of actuator values, bypassing the mixer
2014-11-26 08:32:46 +11:00
Andrew Tridgell
f6b0a3e07f
uORB: added actuator_direct topic
...
this topic will be used to allow direct output of actuator values for
uavcan, bypassing the mixer.
2014-11-26 08:32:46 +11:00
Andrew Tridgell
2dae1bc542
uavcan: break the link between poll fd indexes and controls
...
this linkage was fragile and makes it harder to add new orb
subscriptions to the uavcan code
2014-11-26 08:32:46 +11:00
Lorenz Meier
7cb613bb26
Merge pull request #1398 from philipoe/master
...
Addition of rc-loss duration to the mavlink warning messages
2014-11-23 21:32:13 +01:00
philipoe
08d6cbe6bf
commander: Decrease RC-signal-regained message length to stay within 50 character length limit at all times
2014-11-23 21:23:01 +01:00
Lorenz Meier
2f271888d2
Added performance counter for SD log performance of write() call
2014-11-23 19:22:55 +01:00
Lorenz Meier
300705321a
Allow IO safety off system handling as long as the total system is not live
2014-11-22 16:30:59 +01:00
Lorenz Meier
828163f2f5
Update mixing handling to allow IO safety off updates
2014-11-22 16:30:09 +01:00
Lorenz Meier
b3542bec08
INAV: use int for outputs
2014-11-22 16:29:08 +01:00
Lorenz Meier
1709c74f82
dataman: less verbose, fix code style
2014-11-22 15:49:34 +01:00
Lorenz Meier
90f2864753
INAV: Less verbose
2014-11-22 15:49:03 +01:00
Lorenz Meier
df37f380cb
position controller main: Less verbose
2014-11-22 15:47:54 +01:00
Lorenz Meier
2fbda61521
mc attitude controller: Less verbose
2014-11-22 15:47:10 +01:00
Lorenz Meier
7bed194f4a
EKF: less verbose
2014-11-22 15:46:51 +01:00
Lorenz Meier
b2671c8f05
GPS: be less verbose
2014-11-22 15:46:28 +01:00
Lorenz Meier
6da9063560
Fix FD for commander arm operation
2014-11-22 15:08:54 +01:00
Lorenz Meier
9bb0ecf0ca
Airspeed calibration feedback: Improve wording
2014-11-22 15:06:32 +01:00