Rtos API example

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 #include "RawSerial.h"
00008 #include "SingletonPtr.h"
00009 
00010 class GreenteaSerial : public mbed::RawSerial {
00011 public:
00012     GreenteaSerial();
00013 };
00014 
00015 extern SingletonPtr<GreenteaSerial> greentea_serial;
00016 #endif
00017 
00018 /** @}*/