PX4 Firmware
PX4 Autopilot Software http://px4.io
ashtech.cpp File Reference
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <ctime>
#include "ashtech.h"
#include "rtcm.h"
Include dependency graph for ashtech.cpp:

Go to the source code of this file.

Macros

#define M_PI_F   3.14159265358979323846f
 
#define MIN(X, Y)   ((X) < (Y) ? (X) : (Y))
 
#define ASH_UNUSED(x)   (void)x;
 
#define ASH_DEBUG(...)   {/*GPS_WARN(__VA_ARGS__);*/}
 
#define HEXDIGIT_CHAR(d)   ((char)((d) + (((d) < 0xA) ? '0' : 'A'-0xA)))
 

Macro Definition Documentation

◆ ASH_DEBUG

◆ ASH_UNUSED

#define ASH_UNUSED (   x)    (void)x;

Definition at line 48 of file ashtech.cpp.

Referenced by GPSDriverAshtech::handleMessage().

◆ HEXDIGIT_CHAR

#define HEXDIGIT_CHAR (   d)    ((char)((d) + (((d) < 0xA) ? '0' : 'A'-0xA)))

Definition at line 827 of file ashtech.cpp.

Referenced by GPSDriverAshtech::parseChar().

◆ M_PI_F

◆ MIN

#define MIN (   X,
 
)    ((X) < (Y) ? (X) : (Y))

Definition at line 47 of file ashtech.cpp.

Referenced by GPSDriverAshtech::handleMessage().