ardupilot/libraries/AP_Scripting/AP_Scripting_config.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
696 B
C
Raw Normal View History

#pragma once
#include <AP_HAL/AP_HAL_Boards.h>
#include <AP_SerialManager/AP_SerialManager_config.h>
#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>
// enumerate all of the possible places we can read a script from.
#if !AP_FILESYSTEM_POSIX_ENABLED && !AP_FILESYSTEM_FATFS_ENABLED && !AP_FILESYSTEM_ESP32_ENABLED && !AP_FILESYSTEM_ROMFS_ENABLED
2023-10-04 13:29:05 -03:00
#error "Scripting requires a filesystem"
#endif
#endif
#ifndef AP_SCRIPTING_SERIALDEVICE_ENABLED
#define AP_SCRIPTING_SERIALDEVICE_ENABLED AP_SERIALMANAGER_REGISTER_ENABLED && (BOARD_FLASH_SIZE>1024)
#endif