mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
17 lines
239 B
Plaintext
17 lines
239 B
Plaintext
#!nsh
|
|
#
|
|
# Initialise logging services.
|
|
#
|
|
|
|
if [ -d /fs/microsd ]
|
|
then
|
|
if hw_ver compare PX4FMU_V1
|
|
then
|
|
echo "Start sdlog2 at 50Hz"
|
|
sdlog2 start -r 50 -a -b 16
|
|
else
|
|
echo "Start sdlog2 at 200Hz"
|
|
sdlog2 start -r 200 -a -b 16
|
|
fi
|
|
fi
|