mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
* UAVCAN ESC output: removing ESC output channels from published message that are always zero. This allows the UAVCAN stack to always transfer only the minimum number of output values, avoiding redundant zeroes and the associated increase in bus load and CPU time * Added a separate mixer file for CAN quadrotor * Sampling profiler improvements * PMSP: Output more endpoints * Matrix update * libc usage workaround * Removed UAVCAN perfcounters * Matrix submodule update
30 lines
569 B
Plaintext
30 lines
569 B
Plaintext
#!nsh
|
|
#
|
|
# @name F450-sized quadrotor with CAN
|
|
#
|
|
# @type Quadrotor x
|
|
#
|
|
# @maintainer Pavel Kirienko <pavel@px4.io>
|
|
#
|
|
|
|
sh /etc/init.d/4001_quad_x
|
|
|
|
if [ $AUTOCNF == yes ]
|
|
then
|
|
param set MC_ROLL_P 7.0
|
|
param set MC_ROLLRATE_P 0.16
|
|
param set MC_ROLLRATE_I 0.05
|
|
param set MC_ROLLRATE_D 0.003
|
|
param set MC_PITCH_P 7.0
|
|
param set MC_PITCHRATE_P 0.16
|
|
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.3
|
|
param set MC_YAWRATE_I 0.1
|
|
param set MC_YAWRATE_D 0.0
|
|
fi
|
|
|
|
set MIXER quad_x_can
|
|
set OUTPUT_MODE uavcan_esc
|