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.
28 lines
583 B
28 lines
583 B
#!nsh |
|
# |
|
# Hobbyking Micro Integrated PCB Quadcopter |
|
# with SimonK ESC firmware and Mystery A1510 motors |
|
# |
|
# Thomas Gubler <thomas@px4.io> |
|
# |
|
echo "HK Micro PCB Quad" |
|
|
|
sh /etc/init.d/4001_quad_x |
|
|
|
if [ $AUTOCNF == yes ] |
|
then |
|
param set MC_ROLL_P 7.0 |
|
param set MC_ROLLRATE_P 0.1 |
|
param set MC_ROLLRATE_I 0.0 |
|
param set MC_ROLLRATE_D 0.003 |
|
param set MC_PITCH_P 7.0 |
|
param set MC_PITCHRATE_P 0.1 |
|
param set MC_PITCHRATE_I 0.0 |
|
param set MC_PITCHRATE_D 0.003 |
|
param set MC_YAW_P 2.8 |
|
param set MC_YAWRATE_P 0.2 |
|
param set MC_YAWRATE_I 0.0 |
|
param set MC_YAWRATE_D 0.0 |
|
fi |
|
|
|
set PWM_MIN 1200
|
|
|