2011-09-28 21:51:12 -03:00
|
|
|
/*
|
|
|
|
* APO.h
|
|
|
|
*
|
|
|
|
* Created on: Apr 30, 2011
|
|
|
|
* Author: jgoppert
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef APO_H_
|
|
|
|
#define APO_H_
|
|
|
|
|
|
|
|
#include "AP_Autopilot.h"
|
|
|
|
#include "AP_Guide.h"
|
|
|
|
#include "AP_Controller.h"
|
2011-11-24 14:28:14 -04:00
|
|
|
#include "AP_ControllerBlock.h"
|
2011-09-28 21:51:12 -03:00
|
|
|
#include "AP_HardwareAbstractionLayer.h"
|
|
|
|
#include "AP_MavlinkCommand.h"
|
|
|
|
#include "AP_Navigator.h"
|
|
|
|
#include "AP_RcChannel.h"
|
2011-10-16 04:15:22 -03:00
|
|
|
#include "AP_BatteryMonitor.h"
|
2011-10-25 19:53:39 -03:00
|
|
|
#include "AP_ArmingMechanism.h"
|
2011-10-26 15:59:40 -03:00
|
|
|
#include "AP_CommLink.h"
|
|
|
|
#include "AP_Var_keys.h"
|
|
|
|
#include "constants.h"
|
2011-09-28 21:51:12 -03:00
|
|
|
|
|
|
|
#endif /* APO_H_ */
|
2011-10-26 15:59:40 -03:00
|
|
|
// vim:ts=4:sw=4:expandtab
|