You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
0 B
43 lines
0 B
9 years ago
|
#!nsh
|
||
|
#
|
||
|
# @name Parrot Bebop Frame
|
||
|
#
|
||
|
# @type Quadrotor x
|
||
8 years ago
|
# @class Copter
|
||
9 years ago
|
#
|
||
6 years ago
|
# @board px4_fmu-v2 exclude
|
||
|
# @board px4_fmu-v3 exclude
|
||
|
# @board px4_fmu-v4 exclude
|
||
|
# @board px4_fmu-v4pro exclude
|
||
|
# @board px4_fmu-v5 exclude
|
||
8 years ago
|
# @board aerofc-v1 exclude
|
||
|
#
|
||
9 years ago
|
# @maintainer Michael Schaeuble
|
||
|
#
|
||
|
|
||
|
sh /etc/init.d/rc.mc_defaults
|
||
|
|
||
|
#
|
||
|
# Load default params for this platform
|
||
|
#
|
||
7 years ago
|
if [ $AUTOCNF = yes ]
|
||
9 years ago
|
then
|
||
7 years ago
|
# Set all params here, then disable autoconfig
|
||
|
param set MC_ROLL_P 6.5
|
||
|
param set MC_ROLLRATE_P 0.109999999403953552
|
||
|
param set MC_ROLLRATE_I 0.0
|
||
|
param set MC_ROLLRATE_D 0.0006
|
||
|
param set MC_PITCH_P 6.5
|
||
|
param set MC_PITCHRATE_P 0.1
|
||
|
param set MC_PITCHRATE_I 0.0
|
||
|
param set MC_PITCHRATE_D 0.000799999
|
||
|
param set MC_YAW_P 1.049999
|
||
|
param set MC_YAWRATE_P 0.05
|
||
|
param set MC_YAWRATE_I 0.001
|
||
|
param set MC_YAWRATE_D 0.0
|
||
9 years ago
|
fi
|
||
|
|
||
|
set OUTPUT_MODE bebop
|
||
|
set USE_IO no
|
||
|
set MIXER bebop
|