mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-23 03:27:36 +08:00
20 lines
380 B
Bash
20 lines
380 B
Bash
#!/bin/sh
|
|
#
|
|
# Bitcraze Crazyflie specific board sensors init
|
|
#------------------------------------------------------------------------------
|
|
|
|
# system_power unavailable
|
|
param set CBRK_SUPPLY_CHK 894281
|
|
|
|
if param compare SYS_AUTOSTART 0
|
|
then
|
|
param set SYS_AUTOSTART 4901
|
|
set AUTOCNF yes
|
|
fi
|
|
|
|
if [ $AUTOCNF = yes ]
|
|
then
|
|
# don't probe external I2C
|
|
param set SENS_EXT_I2C_PRB 0
|
|
fi
|