Henk Meewis / Mbed 2 deprecated USB_serial_LED_controller

Dependencies:   mbed

Fork of frdm_echo by Henk Meewis

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?

UserRevisionLine numberNew 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