mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
15 lines
288 B
Bash
15 lines
288 B
Bash
#!/bin/sh
|
|
#
|
|
# UVify Core specific board defaults
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
if [ $AUTOCNF = yes ]
|
|
then
|
|
# Disable safety switch by default
|
|
param set CBRK_IO_SAFETY 22027
|
|
|
|
# don't probe external I2C
|
|
param set SENS_EXT_I2C_PRB 0
|
|
fi
|