mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
GCS_MAVLink: replace HAVE_FILESYSTEM_SUPPORT with backend defines
This commit is contained in:
parent
e8ed94344b
commit
d46d2189ec
@ -32,10 +32,6 @@
|
||||
#define HAL_HIGH_LATENCY2_ENABLED 1
|
||||
#endif
|
||||
|
||||
#ifndef HAL_MAVLINK_INTERVALS_FROM_FILES_ENABLED
|
||||
#define HAL_MAVLINK_INTERVALS_FROM_FILES_ENABLED (HAVE_FILESYSTEM_SUPPORT && BOARD_FLASH_SIZE > 1024)
|
||||
#endif
|
||||
|
||||
// macros used to determine if a message will fit in the space available.
|
||||
|
||||
void gcs_out_of_space_to_send(mavlink_channel_t chan);
|
||||
|
@ -31,3 +31,8 @@
|
||||
#ifndef AP_MAVLINK_MAV_CMD_REQUEST_AUTOPILOT_CAPABILITIES_ENABLED
|
||||
#define AP_MAVLINK_MAV_CMD_REQUEST_AUTOPILOT_CAPABILITIES_ENABLED 1
|
||||
#endif
|
||||
|
||||
#ifndef HAL_MAVLINK_INTERVALS_FROM_FILES_ENABLED
|
||||
#define HAL_MAVLINK_INTERVALS_FROM_FILES_ENABLED ((AP_FILESYSTEM_FATFS_ENABLED || AP_FILESYSTEM_POSIX_ENABLED) && BOARD_FLASH_SIZE > 1024)
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user