2014-04-12 16:13:34 +02:00
|
|
|
#!nsh
|
|
|
|
|
#
|
2015-07-29 19:17:17 +02:00
|
|
|
# @name Steadidrone QU4D
|
2014-04-12 16:13:34 +02:00
|
|
|
#
|
2015-07-29 19:17:17 +02:00
|
|
|
# @type Quadrotor Wide
|
2017-06-27 08:45:37 +02:00
|
|
|
# @class Copter
|
2015-07-29 19:17:17 +02:00
|
|
|
#
|
2017-04-12 16:59:03 +02:00
|
|
|
# @output MAIN1 motor 1
|
|
|
|
|
# @output MAIN2 motor 2
|
|
|
|
|
# @output MAIN3 motor 3
|
|
|
|
|
# @output MAIN4 motor 4
|
|
|
|
|
# @output MAIN5 feed-through of RC AUX1 channel
|
|
|
|
|
# @output MAIN6 feed-through of RC AUX2 channel
|
|
|
|
|
#
|
|
|
|
|
# @output AUX1 feed-through of RC AUX1 channel
|
|
|
|
|
# @output AUX2 feed-through of RC AUX2 channel
|
|
|
|
|
# @output AUX3 feed-through of RC AUX3 channel
|
|
|
|
|
# @output AUX4 feed-through of RC FLAPS channel
|
|
|
|
|
#
|
2017-06-27 08:45:37 +02:00
|
|
|
# @maintainer Lorenz Meier <lorenz@px4.io>
|
2014-04-12 16:13:34 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
sh /etc/init.d/rc.mc_defaults
|
|
|
|
|
|
2014-11-17 17:10:47 +01:00
|
|
|
if [ $AUTOCNF == yes ]
|
2014-04-12 16:13:34 +02:00
|
|
|
then
|
|
|
|
|
param set MC_ROLL_P 7.0
|
|
|
|
|
param set MC_ROLLRATE_P 0.13
|
2015-05-13 15:28:02 +02:00
|
|
|
param set MC_ROLLRATE_I 0.05
|
2014-04-12 16:13:34 +02:00
|
|
|
param set MC_ROLLRATE_D 0.004
|
|
|
|
|
param set MC_PITCH_P 7.0
|
2015-06-16 11:21:36 +02:00
|
|
|
param set MC_PITCHRATE_P 0.19
|
2015-05-13 15:28:02 +02:00
|
|
|
param set MC_PITCHRATE_I 0.05
|
2014-04-12 16:13:34 +02:00
|
|
|
param set MC_PITCHRATE_D 0.004
|
2015-06-16 11:21:36 +02:00
|
|
|
param set MC_YAW_P 4.0
|
2014-04-12 16:13:34 +02:00
|
|
|
param set MC_YAWRATE_P 0.2
|
2015-06-05 21:45:34 +02:00
|
|
|
param set MC_YAWRATE_I 0.1
|
2014-04-12 16:13:34 +02:00
|
|
|
param set MC_YAWRATE_D 0.0
|
|
|
|
|
|
|
|
|
|
param set BAT_N_CELLS 4
|
|
|
|
|
fi
|
|
|
|
|
|
2015-01-07 00:25:06 +02:00
|
|
|
set MIXER quad_w
|
2014-04-12 16:13:34 +02:00
|
|
|
|
2014-11-17 17:02:57 +01:00
|
|
|
set PWM_OUT 1234
|