mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-02 00:20:35 +08:00
3ebf030a02
This was required for shellsheck.
40 lines
756 B
Bash
40 lines
756 B
Bash
#!/bin/sh
|
|
#
|
|
# @name Hobbyking Micro PCB
|
|
#
|
|
# @type Quadrotor x
|
|
# @class Copter
|
|
#
|
|
# @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
|
|
# @board aerofc-v1 exclude
|
|
#
|
|
# @maintainer Thomas Gubler <thomas@px4.io>
|
|
#
|
|
|
|
sh /etc/init.d/rc.mc_defaults
|
|
|
|
set MIXER quad_x
|
|
set PWM_OUT 1234
|
|
|
|
if [ $AUTOCNF = yes ]
|
|
then
|
|
param set MC_ROLL_P 7
|
|
param set MC_ROLLRATE_P 0.1
|
|
param set MC_ROLLRATE_I 0.05
|
|
param set MC_ROLLRATE_D 0.003
|
|
param set MC_PITCH_P 7
|
|
param set MC_PITCHRATE_P 0.1
|
|
param set MC_PITCHRATE_I 0.05
|
|
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.1
|
|
param set MC_YAWRATE_D 0
|
|
|
|
param set PWM_MIN 1200
|
|
fi
|