2012-08-20 15:38:09 -03:00
|
|
|
|
|
|
|
#ifndef __AP_HAL_AVR_H__
|
|
|
|
#define __AP_HAL_AVR_H__
|
|
|
|
|
|
|
|
#include <AP_HAL.h>
|
2012-12-11 15:24:27 -04:00
|
|
|
|
2012-08-21 18:11:24 -03:00
|
|
|
/**
|
2012-12-14 21:19:16 -04:00
|
|
|
* This module exports AP_HAL::HAL instances only.
|
2012-08-21 18:11:24 -03:00
|
|
|
* All internal drivers must conform to AP_HAL interfaces
|
|
|
|
* and not expose implementation details.
|
|
|
|
*/
|
|
|
|
|
2012-12-14 21:19:16 -04:00
|
|
|
#include "HAL_AVR_APM1_Class.h"
|
|
|
|
#include "HAL_AVR_APM2_Class.h"
|
|
|
|
#include "AP_HAL_AVR_Main.h"
|
2012-12-03 20:25:11 -04:00
|
|
|
|
2012-08-20 15:38:09 -03:00
|
|
|
#endif // __AP_HAL_AVR_H__
|
|
|
|
|