mirror of https://github.com/ARMmbed/mbed-os.git
19 lines
295 B
C++
19 lines
295 B
C++
|
|
/** \addtogroup frameworks */
|
|
/** @{*/
|
|
#ifndef GREENTEA_SERIAL_H
|
|
#define GREENTEA_SERIAL_H
|
|
|
|
#include "RawSerial.h"
|
|
#include "SingletonPtr.h"
|
|
|
|
class GreenteaSerial : public mbed::RawSerial {
|
|
public:
|
|
GreenteaSerial();
|
|
};
|
|
|
|
extern SingletonPtr<GreenteaSerial> greentea_serial;
|
|
#endif
|
|
|
|
/** @}*/
|