mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-22 08:57:36 +08:00
15 lines
184 B
Plaintext
15 lines
184 B
Plaintext
#!nsh
|
|
#
|
|
# Initialize logging services.
|
|
#
|
|
|
|
if [ -d /fs/microsd ]
|
|
then
|
|
if hw_ver compare PX4FMU_V1
|
|
then
|
|
sdlog2 start -r 50 -a -b 16 -t
|
|
else
|
|
sdlog2 start -r 200 -a -b 16 -t
|
|
fi
|
|
fi
|