22 lines
472 B
C
22 lines
472 B
C
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
#include <AP_Mission/AP_Mission_config.h>
|
|
|
|
#ifndef AP_FILESYSTEM_PARAM_ENABLED
|
|
#define AP_FILESYSTEM_PARAM_ENABLED 1
|
|
#endif
|
|
|
|
#ifndef AP_FILESYSTEM_MISSION_ENABLED
|
|
#define AP_FILESYSTEM_MISSION_ENABLED AP_MISSION_ENABLED
|
|
#endif
|
|
|
|
#ifndef AP_FILESYSTEM_SYS_ENABLED
|
|
#define AP_FILESYSTEM_SYS_ENABLED 1
|
|
#endif
|
|
|
|
#ifndef AP_FILESYSTEM_ROMFS_ENABLED
|
|
#define AP_FILESYSTEM_ROMFS_ENABLED defined(HAL_HAVE_AP_ROMFS_EMBEDDED_H)
|
|
#endif
|