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
- Committer:
- silverpanda
- Date:
- 2014-04-14
- Revision:
- 5:03b7c237c4c4
- Child:
- 8:b715912d684b
File content as of revision 5:03b7c237c4c4:
#ifndef shell__h__ #define shell__h__ class Shell { public: Shell(uint32_t); void sendHelloWorld(); void scanUSBSerialRx(); private: void sendText(char *); Serial *usbSerial; }; #endif