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.
25 lines
431 B
25 lines
431 B
10 years ago
|
#!nsh
|
||
|
#
|
||
10 years ago
|
# @name 3DR DIY Quad
|
||
10 years ago
|
#
|
||
10 years ago
|
# @type Quadrotor x
|
||
8 years ago
|
# @class Copter
|
||
10 years ago
|
#
|
||
10 years ago
|
# @maintainer Lorenz Meier <lorenz@px4.io>
|
||
10 years ago
|
#
|
||
|
|
||
9 years ago
|
sh /etc/init.d/4001_quad_x
|
||
10 years ago
|
|
||
|
if [ $AUTOCNF == yes ]
|
||
|
then
|
||
10 years ago
|
param set MC_ROLL_P 6.5
|
||
9 years ago
|
param set MC_ROLLRATE_P 0.14
|
||
10 years ago
|
param set MC_ROLLRATE_I 0.1
|
||
10 years ago
|
param set MC_ROLLRATE_D 0.004
|
||
10 years ago
|
param set MC_PITCH_P 6.0
|
||
9 years ago
|
param set MC_PITCHRATE_P 0.14
|
||
10 years ago
|
param set MC_PITCHRATE_I 0.09
|
||
10 years ago
|
param set MC_PITCHRATE_D 0.004
|
||
10 years ago
|
param set MC_YAW_P 4
|
||
10 years ago
|
fi
|