123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
-
- #ifndef MBED_RAW_SERIAL_H
- #define MBED_RAW_SERIAL_H
-
- #include "platform.h"
-
- #if DEVICE_SERIAL
-
- #include "SerialBase.h"
- #include "serial_api.h"
-
- namespace mbed {
-
-
- class RawSerial: public SerialBase {
-
- public:
-
-
- RawSerial(PinName tx, PinName rx);
-
-
-
- int putc(int c);
-
-
-
- int getc();
-
-
-
- int puts(const char *str);
-
- int printf(const char *format, ...);
- };
-
- }
-
- #endif
-
- #endif
|