Skip to content

Commit fea99fa

Browse files
committed
Add ASL Believer airframe config
1 parent a0efc3e commit fea99fa

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
#!/bin/sh
2+
#
3+
# @name Autonomous Systems Lab, ETH Zurich Believer
4+
#
5+
# @type Plane V-Tail
6+
# @class Plane
7+
#
8+
# @output MAIN1 aileron right
9+
# @output MAIN2 aileron left
10+
# @output MAIN3 v-tail right
11+
# @output MAIN4 v-tail left
12+
# @output MAIN5 throttle
13+
# @output MAIN6 wheel
14+
# @output MAIN7 flaps right
15+
# @output MAIN8 flaps left
16+
#
17+
# @output AUX1 feed-through of RC AUX1 channel
18+
# @output AUX2 feed-through of RC AUX2 channel
19+
# @output AUX3 feed-through of RC AUX3 channel
20+
#
21+
# @maintainer Jaeyoung Lim <[email protected]>
22+
#
23+
# @board px4_fmu-v2 exclude
24+
# @board bitcraze_crazyflie exclude
25+
#
26+
27+
. ${R}etc/init.d/rc.fw_defaults
28+
29+
param set-default FW_AIRSPD_MIN 10
30+
param set-default FW_AIRSPD_TRIM 15
31+
param set-default FW_AIRSPD_MAX 20
32+
33+
param set-default FW_MAN_P_MAX 55
34+
param set-default FW_MAN_R_MAX 55
35+
param set-default FW_R_LIM 55
36+
37+
param set-default FW_WR_FF 0.2
38+
param set-default FW_WR_I 0.2
39+
param set-default FW_WR_IMAX 0.8
40+
param set-default FW_WR_P 1
41+
param set-default FW_W_RMAX 0
42+
43+
# set disarmed value for the ESC
44+
param set-default PWM_MAIN_DISARM 1000
45+
46+
# The Mini Talon does not have a wheel and
47+
# no flaps. I leave them here because the mixer
48+
# computes also wheel and flap controls.
49+
set MIXER AAVVTWFF_vtail
50+
51+
# use PWM parameters for throttle channel
52+
set PWM_OUT 5

ROMFS/px4fmu_common/init.d/airframes/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ px4_add_romfs_files(
161161
22000_asl_easyglider
162162
22001_asl_techpod
163163
22002_asl_sensesoar2
164+
22003_asl_believer
164165

165166
24001_dodeca_cox
166167

0 commit comments

Comments
 (0)