QC Control software

Dependencies:   mbed

Fork of dgps by Colin Stearns

adapt/usb.h

Committer:
dylanembed123
Date:
2014-04-05
Revision:
12:e42985e3ea64
Parent:
7:c75d5e5e6bfc
Child:
14:6be57da62283

File content as of revision 12:e42985e3ea64:

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

/// Define Baud
#define USBBAUD 115200

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