mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-17 00:47:34 +08:00
17 lines
239 B
Plaintext
17 lines
239 B
Plaintext
#!nsh
|
|
#
|
|
# Initialize logging services.
|
|
#
|
|
|
|
if [ -d /fs/microsd ]
|
|
then
|
|
if ver hwcmp PX4FMU_V1
|
|
then
|
|
echo "Start sdlog2 at 50Hz"
|
|
sdlog2 start -r 50 -a -b 4 -t
|
|
else
|
|
echo "Start sdlog2 at 200Hz"
|
|
sdlog2 start -r 200 -a -b 22 -t
|
|
fi
|
|
fi
|