Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
features/frameworks/greentea-client/greentea-client/greentea_serial.h@0:0e018d759a2a, 2016-11-08 (annotated)
- Committer:
- switches
- Date:
- Tue Nov 08 18:27:11 2016 +0000
- Revision:
- 0:0e018d759a2a
Initial commit
Who changed what in which revision?
| User | Revision | Line number | New 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 | /** @}*/ |