mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
19 lines
208 B
Plaintext
19 lines
208 B
Plaintext
#!nsh
|
|
#
|
|
# Initialize logging services.
|
|
#
|
|
|
|
if [ -d /fs/microsd ]
|
|
then
|
|
if ver hwcmp PX4FMU_V1
|
|
then
|
|
if sdlog2 start -r 40 -a -b 3 -t
|
|
then
|
|
fi
|
|
else
|
|
if sdlog2 start -r 100 -a -b 12 -t
|
|
then
|
|
fi
|
|
fi
|
|
fi
|