2023-05-22 00:04:36 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
|
2023-05-12 02:53:31 -03:00
|
|
|
#ifndef HAL_SIM_ADSB_ENABLED
|
|
|
|
#define HAL_SIM_ADSB_ENABLED (CONFIG_HAL_BOARD == HAL_BOARD_SITL)
|
|
|
|
#endif
|
|
|
|
|
2023-05-22 00:04:36 -03:00
|
|
|
#ifndef HAL_SIM_SERIALPROXIMITYSENSOR_ENABLED
|
|
|
|
#define HAL_SIM_SERIALPROXIMITYSENSOR_ENABLED (CONFIG_HAL_BOARD == HAL_BOARD_SITL)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_SIM_PS_RPLIDARA1_ENABLED
|
|
|
|
#define HAL_SIM_PS_RPLIDARA1_ENABLED HAL_SIM_SERIALPROXIMITYSENSOR_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAL_SIM_PS_RPLIDARA2_ENABLED
|
|
|
|
#define HAL_SIM_PS_RPLIDARA2_ENABLED HAL_SIM_SERIALPROXIMITYSENSOR_ENABLED
|
|
|
|
#endif
|
2023-06-08 01:13:51 -03:00
|
|
|
|
|
|
|
#ifndef AP_SIM_IS31FL3195_ENABLED
|
|
|
|
#define AP_SIM_IS31FL3195_ENABLED (CONFIG_HAL_BOARD == HAL_BOARD_SITL)
|
|
|
|
#endif
|
2023-05-12 02:53:31 -03:00
|
|
|
|
|
|
|
#ifndef AP_SIM_SHIP_ENABLED
|
|
|
|
#define AP_SIM_SHIP_ENABLED (CONFIG_HAL_BOARD == HAL_BOARD_SITL)
|
|
|
|
#endif
|