mirror of https://github.com/ArduPilot/ardupilot
git-svn-id: https://arducopter.googlecode.com/svn/trunk@430 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
parent
fd42ef7225
commit
dd8c883995
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
AP_GPS_None.cpp
|
||||
*/
|
||||
|
||||
#include "AP_GPS_None.h"
|
||||
|
||||
AP_GPS_None::AP_GPS_None()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void AP_GPS_None::init(void)
|
||||
{
|
||||
}
|
||||
|
||||
void AP_GPS_None::update(void)
|
||||
{
|
||||
}
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef AP_GPS_None_h
|
||||
#define AP_GPS_None_h
|
||||
|
||||
#include <GPS.h>
|
||||
|
||||
class AP_GPS_None : public GPS
|
||||
{
|
||||
public:
|
||||
AP_GPS_None();
|
||||
void init();
|
||||
void update();
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
#endif
|
Loading…
Reference in New Issue