Browse Source

git-svn-id: https://arducopter.googlecode.com/svn/trunk@430 f9c3cf11-9bcb-44bc-f272-b75c42450872

master
jasonshort 15 years ago
parent
commit
dd8c883995
  1. 19
      libraries/AP_GPS/AP_GPS_None.cpp
  2. 16
      libraries/AP_GPS/AP_GPS_None.h

19
libraries/AP_GPS/AP_GPS_None.cpp

@ -0,0 +1,19 @@ @@ -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)
{
}

16
libraries/AP_GPS/AP_GPS_None.h

@ -0,0 +1,16 @@ @@ -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…
Cancel
Save