Core Base Classes for the Light Endpoints

Dependencies:   BufferedSerial

Dependents:   mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more

Revision:
36:73e343ddca7f
Parent:
26:791d22d43cb4
Child:
61:6012d61573ea
--- a/ErrorHandler.cpp	Fri Feb 28 22:18:12 2014 +0000
+++ b/ErrorHandler.cpp	Sat Mar 01 05:31:26 2014 +0000
@@ -166,22 +166,8 @@
     led = 0;
 }
 
-// blink the MQTT Transport TX LED
-void ErrorHandler::blinkMQTTTransportTxLED() {
-    this->blinkLED(led4);
-}
-
-// blink the MQTT Transport RX LED
-void ErrorHandler::blinkMQTTTransportRxLED() {
-    this->blinkLED(led1);
-}
+// blink the Transport TX LED
+void ErrorHandler::blinkTransportTxLED() { this->blinkLED(led4); }
 
-// blink the HTTP Transport TX LED
-void ErrorHandler::blinkHTTPTransportTxLED() {
-    this->blinkLED(led4);
-}
-
-// blink the HTTP Transport RX LED
-void ErrorHandler::blinkHTTPTransportRxLED() {
-    this->blinkLED(led1);
-}
\ No newline at end of file
+// blink the Transport RX LED
+void ErrorHandler::blinkTransportRxLED() { this->blinkLED(led1); }
\ No newline at end of file