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.
Fork of frdm_echo by
shell.h@5:03b7c237c4c4, 2014-04-14 (annotated)
- Committer:
- silverpanda
- Date:
- Mon Apr 14 01:47:31 2014 +0000
- Revision:
- 5:03b7c237c4c4
- Child:
- 8:b715912d684b
made separate "Shell"-class
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
silverpanda | 5:03b7c237c4c4 | 1 | #ifndef shell__h__ |
silverpanda | 5:03b7c237c4c4 | 2 | #define shell__h__ |
silverpanda | 5:03b7c237c4c4 | 3 | |
silverpanda | 5:03b7c237c4c4 | 4 | class Shell { |
silverpanda | 5:03b7c237c4c4 | 5 | public: |
silverpanda | 5:03b7c237c4c4 | 6 | Shell(uint32_t); |
silverpanda | 5:03b7c237c4c4 | 7 | void sendHelloWorld(); |
silverpanda | 5:03b7c237c4c4 | 8 | void scanUSBSerialRx(); |
silverpanda | 5:03b7c237c4c4 | 9 | |
silverpanda | 5:03b7c237c4c4 | 10 | private: |
silverpanda | 5:03b7c237c4c4 | 11 | void sendText(char *); |
silverpanda | 5:03b7c237c4c4 | 12 | |
silverpanda | 5:03b7c237c4c4 | 13 | Serial *usbSerial; |
silverpanda | 5:03b7c237c4c4 | 14 | }; |
silverpanda | 5:03b7c237c4c4 | 15 | |
silverpanda | 5:03b7c237c4c4 | 16 | #endif |