2014-11-17 01:33:23 -04:00
|
|
|
/*
|
|
|
|
* AP_IRLock.h
|
|
|
|
*
|
|
|
|
* Created on: Nov 10, 2014
|
|
|
|
* Author: MLandes
|
|
|
|
*/
|
|
|
|
|
|
|
|
// @file AP_IRLock.h
|
|
|
|
// @brief Catch-all headerthat defines all supported irlock classes.
|
|
|
|
|
2015-08-28 05:12:27 -03:00
|
|
|
#include "IRLock.h"
|
2016-11-26 01:22:18 -04:00
|
|
|
#include "AP_IRLock_I2C.h"
|
2016-09-14 20:31:16 -03:00
|
|
|
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
2019-02-12 07:08:28 -04:00
|
|
|
#include "AP_IRLock_SITL_Gazebo.h"
|
2016-09-14 20:31:16 -03:00
|
|
|
#include "AP_IRLock_SITL.h"
|
|
|
|
#endif
|