Kenji Arai / mbed-os_TYBLE16

Dependents:   TYBLE16_simple_data_logger TYBLE16_MP3_Air

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers greentea_serial.h Source File

greentea_serial.h

00001 
00002 /** \addtogroup frameworks */
00003 /** @{*/
00004 #ifndef GREENTEA_SERIAL_H
00005 #define GREENTEA_SERIAL_H
00006 
00007 #if DEVICE_SERIAL
00008 
00009 #include "RawSerial.h"
00010 #include "SingletonPtr.h"
00011 
00012 class GreenteaSerial : public mbed::RawSerial {
00013 public:
00014     GreenteaSerial();
00015 };
00016 
00017 extern SingletonPtr<GreenteaSerial> greentea_serial;
00018 #endif
00019 
00020 /** @}*/
00021 #endif