mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-07-26 16:28:06 +08:00
13 lines
265 B
Bash
13 lines
265 B
Bash
#!/bin/sh
|
|
#
|
|
# S32K1XX specific defaults
|
|
#------------------------------------------------------------------------------
|
|
|
|
set LOGGER_BUF 8
|
|
|
|
if param greater -s UAVCAN_ENABLE 1
|
|
then
|
|
# Reduce logger buffer to free up some RAM for UAVCAN servers.
|
|
set LOGGER_BUF 6
|
|
fi
|