Remove eink0.1 and Air530 files

This commit is contained in:
Sacha Weatherstone
2022-03-29 22:11:16 +11:00
parent eafd205169
commit 2ed8ea10c0
8 changed files with 2 additions and 487 deletions

View File

@@ -310,9 +310,7 @@ int GPS::prepareDeepSleep(void *unused)
#include "UBloxGPS.h"
#endif
#ifdef HAS_AIR530_GPS
#include "Air530GPS.h"
#elif !defined(NO_GPS)
#ifndef NO_GPS
#include "NMEAGPS.h"
#endif
@@ -346,11 +344,7 @@ GPS *createGps()
// Some boards might have only the TX line from the GPS connected, in that case, we can't configure it at all. Just
// assume NMEA at 9600 baud.
DEBUG_MSG("Hoping that NMEA might work\n");
#ifdef HAS_AIR530_GPS
GPS *new_gps = new Air530GPS();
#else
GPS *new_gps = new NMEAGPS();
#endif
new_gps->setup();
return new_gps;
}