Henk Meewis / Mbed 2 deprecated USB_serial_LED_controller

Dependencies:   mbed

Fork of frdm_echo by Henk Meewis

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