2013-09-22 03:01:24 -03:00
|
|
|
|
|
|
|
#ifndef __AP_HAL_LINUX_PRIVATE_H__
|
|
|
|
#define __AP_HAL_LINUX_PRIVATE_H__
|
|
|
|
|
|
|
|
/* Umbrella header for all private headers of the AP_HAL_Linux module.
|
|
|
|
* Only import this header from inside AP_HAL_Linux
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "UARTDriver.h"
|
2014-11-07 06:17:50 -04:00
|
|
|
#include "SPIUARTDriver.h"
|
2013-09-22 03:01:24 -03:00
|
|
|
#include "I2CDriver.h"
|
|
|
|
#include "SPIDriver.h"
|
|
|
|
#include "AnalogIn.h"
|
2015-04-09 13:39:16 -03:00
|
|
|
#include "AnalogIn_Navio.h"
|
2013-09-22 03:01:24 -03:00
|
|
|
#include "Storage.h"
|
|
|
|
#include "GPIO.h"
|
|
|
|
#include "RCInput.h"
|
2015-02-27 17:37:37 -04:00
|
|
|
#include "RCInput_AioPRU.h"
|
2014-10-26 16:18:04 -03:00
|
|
|
#include "RCInput_Navio.h"
|
2014-08-19 00:48:56 -03:00
|
|
|
#include "RCOutput_PRU.h"
|
2015-02-27 17:37:37 -04:00
|
|
|
#include "RCOutput_AioPRU.h"
|
2014-09-18 10:29:47 -03:00
|
|
|
#include "RCOutput_Navio.h"
|
2014-11-13 19:16:59 -04:00
|
|
|
#include "RCOutput_ZYNQ.h"
|
2015-07-10 01:02:32 -03:00
|
|
|
#include "RCOutput_Bebop.h"
|
2013-09-22 03:01:24 -03:00
|
|
|
#include "Semaphores.h"
|
|
|
|
#include "Scheduler.h"
|
2014-11-15 01:51:21 -04:00
|
|
|
#include "ToneAlarmDriver.h"
|
2013-09-22 03:01:24 -03:00
|
|
|
#include "Util.h"
|
|
|
|
|
|
|
|
#endif // __AP_HAL_LINUX_PRIVATE_H__
|
|
|
|
|