mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
It scales the yawspeed setpoint arbitrarily by default with 0.5. This makes no sense because when you give a setpoint of 1rad/s then you expect the setpoint to get executed. If you want manual yawspeed response to be less agressive on the stick use the scaling parameter for the stick MPC_MAN_Y_MAX.
41 lines
797 B
Plaintext
41 lines
797 B
Plaintext
#!nsh
|
|
#
|
|
# @name NanoMind 110 Quad
|
|
#
|
|
# @type Quadrotor x
|
|
# @class Copter
|
|
#
|
|
# @board px4fmu-v2 exclude
|
|
# @board px4fmu-v3 exclude
|
|
# @board px4fmu-v4 exclude
|
|
# @board px4fmu-v4pro exclude
|
|
# @board px4fmu-v5 exclude
|
|
# @board aerofc-v1 exclude
|
|
#
|
|
# @maintainer Henry Zhang <zhanghui629@gmail.com>
|
|
#
|
|
|
|
sh /etc/init.d/4001_quad_x
|
|
|
|
if [ $AUTOCNF == yes ]
|
|
then
|
|
param set MC_ROLL_P 8.0
|
|
param set MC_ROLLRATE_P 0.19
|
|
param set MC_ROLLRATE_I 0.1
|
|
param set MC_ROLLRATE_D 0.0055
|
|
param set MC_PITCH_P 8.0
|
|
param set MC_PITCHRATE_P 0.19
|
|
param set MC_PITCHRATE_I 0.1
|
|
param set MC_PITCHRATE_D 0.0055
|
|
param set MC_YAW_P 4.0
|
|
param set MC_YAWRATE_P 0.2
|
|
param set MC_YAWRATE_I 0.1
|
|
param set MC_YAWRATE_D 0.0
|
|
|
|
param set BAT_N_CELLS 1
|
|
|
|
param set PWM_DISARMED 0
|
|
param set PWM_MIN 500
|
|
param set PWM_MAX 2200
|
|
fi
|