QC Control software

Dependencies:   mbed

Fork of dgps by Colin Stearns

adapt/gps.h

Committer:
dylanembed123
Date:
2014-04-01
Revision:
7:c75d5e5e6bfc
Child:
12:e42985e3ea64

File content as of revision 7:c75d5e5e6bfc:

#ifndef _GPS_H_
#define _GPS_H_
#include "mbed.h"


/// Define Pinout
#define GPSPINTX p9
#define GPSPINRX p10

/// Define Baud
#define GPSBAUD 57600

class GPS{
private:
    static Serial* gps;
public:
    /// \brief Call this function to get a hold of the serial for USB.
    static Serial& getSerial();
};
#endif