Browse Source
Implemented the way to specify motor output scale which is required for SK450 DeadCat as it has asymetrical arms (front arms are longer than back ones)sbg
6 changed files with 89 additions and 6 deletions
@ -0,0 +1,32 @@ |
|||||||
|
#!nsh |
||||||
|
# |
||||||
|
# HobbyKing SK450 DeadCat modification |
||||||
|
# |
||||||
|
# Anton Matosov <anton.matosov@gmail.com> |
||||||
|
# |
||||||
|
|
||||||
|
sh /etc/init.d/rc.mc_defaults |
||||||
|
|
||||||
|
if [ $AUTOCNF == yes ] |
||||||
|
then |
||||||
|
param set MC_ROLL_P 6.0 |
||||||
|
param set MC_ROLLRATE_P 0.04 |
||||||
|
param set MC_ROLLRATE_I 0.1 |
||||||
|
param set MC_ROLLRATE_D 0.0015 |
||||||
|
|
||||||
|
param set MC_PITCH_P 6.0 |
||||||
|
param set MC_PITCHRATE_P 0.08 |
||||||
|
param set MC_PITCHRATE_I 0.2 |
||||||
|
param set MC_PITCHRATE_D 0.0015 |
||||||
|
|
||||||
|
param set MC_YAW_P 2.8 |
||||||
|
param set MC_YAWRATE_P 0.1 |
||||||
|
param set MC_YAWRATE_I 0.07 |
||||||
|
param set MC_YAWRATE_D 0.0 |
||||||
|
fi |
||||||
|
|
||||||
|
set VEHICLE_TYPE mc |
||||||
|
set MIXER FMU_quad_deadcat |
||||||
|
|
||||||
|
set PWM_OUTPUTS 1234 |
||||||
|
set PWM_MIN 1075 |
@ -0,0 +1,25 @@ |
|||||||
|
Multirotor mixer for PX4FMU |
||||||
|
=========================== |
||||||
|
|
||||||
|
This file defines a single mixer for a quadrotor in SK450 DeadCat configuration. All controls are mixed 100%. |
||||||
|
|
||||||
|
R: 4dc 10000 10000 10000 0 |
||||||
|
|
||||||
|
Gimbal / payload mixer for last four channels |
||||||
|
----------------------------------------------------- |
||||||
|
|
||||||
|
M: 1 |
||||||
|
O: 10000 10000 0 -10000 10000 |
||||||
|
S: 0 4 10000 10000 0 -10000 10000 |
||||||
|
|
||||||
|
M: 1 |
||||||
|
O: 10000 10000 0 -10000 10000 |
||||||
|
S: 0 5 10000 10000 0 -10000 10000 |
||||||
|
|
||||||
|
M: 1 |
||||||
|
O: 10000 10000 0 -10000 10000 |
||||||
|
S: 0 6 10000 10000 0 -10000 10000 |
||||||
|
|
||||||
|
M: 1 |
||||||
|
O: 10000 10000 0 -10000 10000 |
||||||
|
S: 0 7 10000 10000 0 -10000 10000 |
Loading…
Reference in new issue