Greg Steiert / maxim_dev

Dependents:   sensomed

Committer:
switches
Date:
Tue Nov 08 18:27:11 2016 +0000
Revision:
0:0e018d759a2a
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
switches 0:0e018d759a2a 1
switches 0:0e018d759a2a 2 /** \addtogroup frameworks */
switches 0:0e018d759a2a 3 /** @{*/
switches 0:0e018d759a2a 4 #ifndef GREENTEA_SERIAL_H
switches 0:0e018d759a2a 5 #define GREENTEA_SERIAL_H
switches 0:0e018d759a2a 6
switches 0:0e018d759a2a 7 #include "RawSerial.h"
switches 0:0e018d759a2a 8 #include "SingletonPtr.h"
switches 0:0e018d759a2a 9
switches 0:0e018d759a2a 10 class GreenteaSerial : public mbed::RawSerial {
switches 0:0e018d759a2a 11 public:
switches 0:0e018d759a2a 12 GreenteaSerial();
switches 0:0e018d759a2a 13 };
switches 0:0e018d759a2a 14
switches 0:0e018d759a2a 15 extern SingletonPtr<GreenteaSerial> greentea_serial;
switches 0:0e018d759a2a 16 #endif
switches 0:0e018d759a2a 17
switches 0:0e018d759a2a 18 /** @}*/