2023-06-07 02:56:50 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
2024-08-09 01:59:56 -03:00
|
|
|
#include <AP_SerialManager/AP_SerialManager_config.h>
|
2023-06-07 02:56:50 -03:00
|
|
|
|
|
|
|
#ifndef AP_SCRIPTING_ENABLED
|
2023-10-04 13:29:05 -03:00
|
|
|
#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
|
2023-06-07 02:56:50 -03:00
|
|
|
#endif
|
2024-08-09 01:59:56 -03:00
|
|
|
|
|
|
|
#ifndef AP_SCRIPTING_SERIALDEVICE_ENABLED
|
|
|
|
#define AP_SCRIPTING_SERIALDEVICE_ENABLED AP_SERIALMANAGER_REGISTER_ENABLED && (BOARD_FLASH_SIZE>1024)
|
|
|
|
#endif
|