mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-23 08:13:56 -04:00
Plane: default LOG_BITMASK to 32767 on non-APM
This commit is contained in:
parent
a8946a5f31
commit
d9cb101a03
@ -437,6 +437,7 @@
|
||||
# define LOGGING_ENABLED ENABLED
|
||||
#endif
|
||||
|
||||
#if CONFIG_HAL_BOARD == HAL_BOARD_APM1 || CONFIG_HAL_BOARD == HAL_BOARD_APM2
|
||||
#define DEFAULT_LOG_BITMASK \
|
||||
MASK_LOG_ATTITUDE_MED | \
|
||||
MASK_LOG_GPS | \
|
||||
@ -450,6 +451,10 @@
|
||||
MASK_LOG_TECS | \
|
||||
MASK_LOG_CAMERA | \
|
||||
MASK_LOG_RC
|
||||
#else
|
||||
// other systems have plenty of space for full logs
|
||||
#define DEFAULT_LOG_BITMASK 0xffff
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user