aboutsummaryrefslogtreecommitdiff
path: root/ROMFS/px4fmu_common/init.d/08_ardrone
blob: eb9f82f771045dcecb7b2c00853782ceed6e06d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!nsh

echo "[init] 08_ardrone: PX4FMU on PX4IOAR carrier board"
 
#
# Load default params for this platform
#
if param compare SYS_AUTOCONFIG 1
then
	# Set all params here, then disable autoconfig
	# TODO

	param set SYS_AUTOCONFIG 0
	param save /fs/microsd/params
fi

#
# Force some key parameters to sane values
# MAV_TYPE     2 = quadrotor
#
param set MAV_TYPE 2

#
# Start MAVLink
#
mavlink start -d /dev/ttyS0 -b 57600
usleep 5000

#
# Configure PX4FMU for operation with PX4IOAR
#
fmu mode_gpio_serial
 
#
# Fire up the AR.Drone interface.
#
ardrone_interface start -d /dev/ttyS1
 
#
# Start common for all multirotors apps
#
sh /etc/init.d/rc.multirotor
 
# Exit, because /dev/ttyS0 is needed for MAVLink
exit