aboutsummaryrefslogblamecommitdiff
path: root/ROMFS/px4fmu_common/init.d/rc.hil
blob: eccb2b7678c5a43814c5a8708afb7aa83080b71a (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                       
                                     




                                             











                                                            

                       
              




                          
  

 






                                               
                           




                                                     

                       

                                
#!nsh
#
# USB HIL start
#

echo "[HIL] starting.."

uorb start

# Tell MAVLink that this link is "fast"
mavlink start -b 230400 -d /dev/ttyS1

# Create a fake HIL /dev/pwm_output interface
hil mode_pwm

#
# Force some key parameters to sane values
# MAV_TYPE     1 = fixed wing, 2 = quadrotor, 13 = hexarotor
#              see https://pixhawk.ethz.ch/mavlink/
#
param set MAV_TYPE 1

#
# Start the commander (depends on orb, mavlink)
#
commander start

#
# Check if we got an IO
#
if px4io start
then
	echo "IO started"
else
	fmu mode_serial
	echo "FMU started"
fi

#
# Start the sensors (depends on orb, px4io)
#
sh /etc/init.d/rc.sensors

#
# Start the attitude estimator (depends on orb)
#
att_pos_estimator_ekf start
 
#
# Load mixer and start controllers (depends on px4io)
#
mixer load /dev/pwm_output /etc/mixers/FMU_AET.mix
fw_pos_control_l1 start
fw_att_control start

echo "[HIL] setup done, running"