AP_Scripting: require a file system
This commit is contained in:
parent
fc68bf8979
commit
f712b202de
@ -3,5 +3,12 @@
|
||||
#include <AP_HAL/AP_HAL_Boards.h>
|
||||
|
||||
#ifndef AP_SCRIPTING_ENABLED
|
||||
#define AP_SCRIPTING_ENABLED BOARD_FLASH_SIZE > 1024
|
||||
#define AP_SCRIPTING_ENABLED (BOARD_FLASH_SIZE > 1024)
|
||||
#endif
|
||||
|
||||
#if AP_SCRIPTING_ENABLED
|
||||
#include <AP_Filesystem/AP_Filesystem_config.h>
|
||||
#if !AP_FILESYSTEM_FILE_READING_ENABLED
|
||||
#error "Scripting requires a filesystem"
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user