mirror of https://github.com/ArduPilot/ardupilot
26 lines
488 B
C
26 lines
488 B
C
/*
|
|
* 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"
|
|
#include "AP_HardwareAbstractionLayer.h"
|
|
#include "AP_MavlinkCommand.h"
|
|
#include "AP_Navigator.h"
|
|
#include "AP_RcChannel.h"
|
|
#include "AP_BatteryMonitor.h"
|
|
#include "AP_ArmingMechanism.h"
|
|
#include "AP_CommLink.h"
|
|
#include "AP_Var_keys.h"
|
|
#include "constants.h"
|
|
|
|
#endif /* APO_H_ */
|
|
// vim:ts=4:sw=4:expandtab
|