gnssview_old/plugins/gnss/lib/nmea/deprecated.dart
tanlinxing 553bde932c getx
2024-07-31 19:04:11 +08:00

69 lines
1.3 KiB
Dart

// ignore_for_file: constant_identifier_names
import 'gga.dart';
import 'gsa.dart';
import 'gll.dart';
import 'gns.dart';
import 'gsv.dart';
import 'hdt.dart';
import 'rmc.dart';
import 'vtg.dart';
import 'zda.dart';
const PrefixGNGNS = "GNGNS";
const PrefixGPGGA = "GPGGA";
const PrefixGPGLL = "GPGLL";
const PrefixGPGSA = "GPGSA";
const PrefixGPRMC = "GPRMC";
const PrefixPGRME = "PGRME";
const PrefixGLGSV = "GLGSV";
const PrefixGNGGA = "GNGGA";
const PrefixGNRMC = "GNRMC";
const PrefixGPGSV = "GPGSV";
const PrefixGPHDT = "GPHDT";
const PrefixGPVTG = "GPVTG";
const PrefixGPZDA = "GPZDA";
// Deprecated: Use GSV instead
typedef GLGSV = GSV;
// Deprecated: Use GSVInfo instead
typedef GLGSVInfo = GSVInfo;
// Deprecated: Use GGA instead
typedef GNGGA = GGA;
// Deprecated: Use GNS instead
typedef GNGNS = GNS;
// Deprecated: Use RCM instead
typedef GNRMC = RMC;
// Deprecated: Use GGA instead
typedef GPGGA = GGA;
// Deprecated: Use GLL instead
typedef GPGLL = GLL;
// Deprecated: Use GSA instead
typedef GPGSA = GSA;
// Deprecated: Use GSV instead
typedef GPGSV = GSV;
// Deprecated: Use GSVInfo instead
typedef GPGSVInfo = GSVInfo;
// Deprecated: Use HDT instead
typedef GPHDT = HDT;
// Deprecated: Use RMC instead
typedef GPRMC = RMC;
// Deprecated: Use VTG instead
typedef GPVTG = VTG;
// Deprecated: Use ZDA instead
typedef GPZDA = ZDA;