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.
24 lines
402 B
24 lines
402 B
7 years ago
|
#!nsh
|
||
|
#
|
||
|
# @name S500
|
||
|
#
|
||
|
# @type Quadrotor x
|
||
|
# @class Copter
|
||
|
#
|
||
|
# @maintainer Lorenz Meier <lorenz@px4.io>
|
||
|
#
|
||
|
|
||
|
sh /etc/init.d/4001_quad_x
|
||
|
|
||
|
if [ $AUTOCNF == yes ]
|
||
|
then
|
||
|
param set MC_ROLL_P 6.5
|
||
|
param set MC_ROLLRATE_P 0.18
|
||
|
param set MC_ROLLRATE_I 0.15
|
||
|
param set MC_ROLLRATE_D 0.003
|
||
|
param set MC_PITCH_P 6.5
|
||
|
param set MC_PITCHRATE_P 0.18
|
||
|
param set MC_PITCHRATE_I 0.15
|
||
|
param set MC_PITCHRATE_D 0.003
|
||
|
fi
|