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

Committer:
ansond
Date:
Tue Mar 04 16:48:20 2014 +0000
Revision:
74:b60149dd669e
Parent:
73:3e6478c7649f
Child:
82:24af66daaf17
updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 0:4c9bfcb3e759 1 /* Copyright C2013 Doug Anson, MIT License
ansond 0:4c9bfcb3e759 2 *
ansond 0:4c9bfcb3e759 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 0:4c9bfcb3e759 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 0:4c9bfcb3e759 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 0:4c9bfcb3e759 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 0:4c9bfcb3e759 7 * furnished to do so, subject to the following conditions:
ansond 0:4c9bfcb3e759 8 *
ansond 0:4c9bfcb3e759 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 0:4c9bfcb3e759 10 * substantial portions of the Software.
ansond 0:4c9bfcb3e759 11 *
ansond 0:4c9bfcb3e759 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 0:4c9bfcb3e759 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 0:4c9bfcb3e759 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 0:4c9bfcb3e759 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 0:4c9bfcb3e759 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 0:4c9bfcb3e759 17 */
ansond 0:4c9bfcb3e759 18
ansond 0:4c9bfcb3e759 19 #include "ErrorHandler.h"
ansond 0:4c9bfcb3e759 20
ansond 18:bc165829bb88 21 // Annunciations
ansond 0:4c9bfcb3e759 22 DigitalOut led1(LED1);
ansond 73:3e6478c7649f 23 DigitalOut led2(LED2);
ansond 73:3e6478c7649f 24 DigitalOut led3(LED3);
ansond 0:4c9bfcb3e759 25 DigitalOut led4(LED4);
ansond 0:4c9bfcb3e759 26
ansond 0:4c9bfcb3e759 27 // Multi-color LED support
ansond 72:46c94966311b 28 PwmOut r(p23);
ansond 72:46c94966311b 29 PwmOut g(p24);
ansond 72:46c94966311b 30 PwmOut b(p25);
ansond 0:4c9bfcb3e759 31
ansond 71:90bf61bc3727 32 // Memory statistics macro
ansond 74:b60149dd669e 33 #define MEM_STATS(x) \
ansond 71:90bf61bc3727 34 int s##x=0;\
ansond 71:90bf61bc3727 35 int *h##x = new int [1];\
ansond 71:90bf61bc3727 36 this->m_pc->printf("\r\nMEMORY: stack: 0x%08x heap: 0x%08x avail: %d bytes\r\n", &s##x, h##x, &s##x-h##x);\
ansond 71:90bf61bc3727 37 if (h##x > &s##x)\
ansond 71:90bf61bc3727 38 error("collision\n");\
ansond 71:90bf61bc3727 39 delete [] h##x;\
ansond 71:90bf61bc3727 40 __nop();
ansond 71:90bf61bc3727 41
ansond 71:90bf61bc3727 42 // close down connections
ansond 20:f2dbbd852e08 43 extern void closedown(int code);
ansond 0:4c9bfcb3e759 44
ansond 0:4c9bfcb3e759 45 // default constructor
ansond 68:e6431dfe2f30 46 ErrorHandler::ErrorHandler(Serial *pc,C12832_LCD *lcd) {
ansond 0:4c9bfcb3e759 47 this->m_pc = pc;
ansond 0:4c9bfcb3e759 48 this->m_lcd = lcd;
ansond 26:791d22d43cb4 49 memset(this->m_message,0,MAX_LOG_MESSAGE+1);
ansond 0:4c9bfcb3e759 50 this->resetLEDs();
ansond 70:055ebf51f6ad 51 this->m_mutex = NULL;
ansond 70:055ebf51f6ad 52 this->m_close_mutex = NULL;
ansond 70:055ebf51f6ad 53 this->m_led_mutex = NULL;
ansond 70:055ebf51f6ad 54 #ifdef EH_USE_MUTEXES
ansond 61:6012d61573ea 55 this->m_mutex = new Mutex();
ansond 70:055ebf51f6ad 56 this->m_close_mutex = new Mutex();
ansond 61:6012d61573ea 57 this->m_led_mutex = new Mutex();
ansond 70:055ebf51f6ad 58 #endif
ansond 70:055ebf51f6ad 59 this->releaseMutexes();
ansond 0:4c9bfcb3e759 60 }
ansond 0:4c9bfcb3e759 61
ansond 0:4c9bfcb3e759 62 // default destructor
ansond 0:4c9bfcb3e759 63 ErrorHandler::~ErrorHandler() {
ansond 70:055ebf51f6ad 64 this->releaseMutexes();
ansond 70:055ebf51f6ad 65 if (this->m_mutex != NULL) delete this->m_mutex;
ansond 70:055ebf51f6ad 66 if (this->m_close_mutex != NULL) delete this->m_close_mutex;
ansond 70:055ebf51f6ad 67 if (this->m_led_mutex != NULL) delete this->m_led_mutex;
ansond 70:055ebf51f6ad 68 }
ansond 70:055ebf51f6ad 69
ansond 70:055ebf51f6ad 70 // release all mutexes
ansond 70:055ebf51f6ad 71 void ErrorHandler::releaseMutexes() {
ansond 70:055ebf51f6ad 72 if (this->m_mutex != NULL) this->m_mutex->unlock();
ansond 70:055ebf51f6ad 73 if (this->m_close_mutex != NULL) this->m_close_mutex->unlock();
ansond 70:055ebf51f6ad 74 if (this->m_led_mutex != NULL) this->m_led_mutex->unlock();
ansond 0:4c9bfcb3e759 75 }
ansond 0:4c9bfcb3e759 76
ansond 0:4c9bfcb3e759 77 // log information
ansond 0:4c9bfcb3e759 78 void ErrorHandler::log(const char *format, ...) {
ansond 70:055ebf51f6ad 79 if (this->m_mutex != NULL) this->m_mutex->lock();
ansond 26:791d22d43cb4 80 memset(this->m_message,0,MAX_LOG_MESSAGE+1);
ansond 0:4c9bfcb3e759 81 va_list args;
ansond 0:4c9bfcb3e759 82 va_start(args, format);
ansond 0:4c9bfcb3e759 83 vsprintf(this->m_message, format, args);
ansond 0:4c9bfcb3e759 84 va_end(args);
ansond 0:4c9bfcb3e759 85 this->m_pc->printf(this->m_message);
ansond 64:7e494186e2ec 86 #ifdef ENABLE_MEMORY_DEBUG
ansond 66:3361be4bfd38 87 MEM_STATS(0);
ansond 64:7e494186e2ec 88 #endif
ansond 0:4c9bfcb3e759 89 this->m_pc->printf("\r\n");
ansond 0:4c9bfcb3e759 90 this->m_lcd->cls();
ansond 0:4c9bfcb3e759 91 this->m_lcd->locate(0,0);
ansond 0:4c9bfcb3e759 92 this->m_lcd->printf(this->m_message);
ansond 70:055ebf51f6ad 93 if (this->m_mutex != NULL) this->m_mutex->unlock();
ansond 0:4c9bfcb3e759 94 }
ansond 0:4c9bfcb3e759 95
ansond 74:b60149dd669e 96 // log information
ansond 74:b60149dd669e 97 void ErrorHandler::log_memory(const char *format, ...) {
ansond 74:b60149dd669e 98 #ifdef MEMORY_LOGGING
ansond 74:b60149dd669e 99 if (this->m_mutex != NULL) this->m_mutex->lock();
ansond 74:b60149dd669e 100 memset(this->m_message,0,MAX_LOG_MESSAGE+1);
ansond 74:b60149dd669e 101 va_list args;
ansond 74:b60149dd669e 102 va_start(args, format);
ansond 74:b60149dd669e 103 vsprintf(this->m_message, format, args);
ansond 74:b60149dd669e 104 va_end(args);
ansond 74:b60149dd669e 105 this->m_pc->printf(this->m_message);
ansond 74:b60149dd669e 106 MEM_STATS(0);
ansond 74:b60149dd669e 107 if (this->m_mutex != NULL) this->m_mutex->unlock();
ansond 74:b60149dd669e 108 #endif
ansond 74:b60149dd669e 109 }
ansond 74:b60149dd669e 110
ansond 15:386dccd0000a 111 // pause
ansond 15:386dccd0000a 112 void ErrorHandler::pause(const char *format, ...) {
ansond 70:055ebf51f6ad 113 if (this->m_mutex != NULL) this->m_mutex->lock();
ansond 26:791d22d43cb4 114 memset(this->m_message,0,MAX_LOG_MESSAGE+1);
ansond 15:386dccd0000a 115 va_list args;
ansond 15:386dccd0000a 116 va_start(args, format);
ansond 15:386dccd0000a 117 vsprintf(this->m_message, format, args);
ansond 15:386dccd0000a 118 va_end(args);
ansond 15:386dccd0000a 119 this->m_pc->printf(this->m_message);
ansond 15:386dccd0000a 120 this->m_pc->printf("\r\n");
ansond 15:386dccd0000a 121 this->m_lcd->cls();
ansond 15:386dccd0000a 122 this->m_lcd->locate(0,0);
ansond 15:386dccd0000a 123 this->m_lcd->printf(this->m_message);
ansond 18:bc165829bb88 124 this->m_pc->printf("Press any key to continue...ctrl-c to stop\r\n");
ansond 16:fda7dbb8b47a 125 char c = this->m_pc->getc();
ansond 16:fda7dbb8b47a 126 if (c == 0x03) { // CTRL-C ASCII
ansond 16:fda7dbb8b47a 127 this->m_pc->printf("ctrl-c: closing down...\r\n");
ansond 61:6012d61573ea 128 this->m_mutex->unlock();
ansond 20:f2dbbd852e08 129 closedown(1);
ansond 16:fda7dbb8b47a 130 }
ansond 70:055ebf51f6ad 131 if (this->m_mutex != NULL) this->m_mutex->unlock();
ansond 15:386dccd0000a 132 }
ansond 15:386dccd0000a 133
ansond 0:4c9bfcb3e759 134 // check for exit
ansond 15:386dccd0000a 135 void ErrorHandler::checkForExit() {
ansond 70:055ebf51f6ad 136 if (this->m_close_mutex != NULL) this->m_close_mutex->lock();
ansond 0:4c9bfcb3e759 137 if (this->m_pc->readable()) {
ansond 0:4c9bfcb3e759 138 char c = this->m_pc->getc();
ansond 0:4c9bfcb3e759 139 if (c == 0x03) { // CTRL-C ASCII
ansond 0:4c9bfcb3e759 140 this->m_pc->printf("ctrl-c: closing down...\r\n");
ansond 20:f2dbbd852e08 141 closedown(1);
ansond 0:4c9bfcb3e759 142 }
ansond 0:4c9bfcb3e759 143 }
ansond 70:055ebf51f6ad 144 if (this->m_close_mutex != NULL) this->m_close_mutex->unlock();
ansond 0:4c9bfcb3e759 145 }
ansond 0:4c9bfcb3e759 146
ansond 0:4c9bfcb3e759 147 // set the color LED
ansond 0:4c9bfcb3e759 148 void ErrorHandler::setRGBLED(float H, float S, float V) {
ansond 0:4c9bfcb3e759 149 float f,h,p,q,t;
ansond 0:4c9bfcb3e759 150 int i;
ansond 0:4c9bfcb3e759 151 if( S == 0.0) {
ansond 0:4c9bfcb3e759 152 r = 1.0 - V; // invert pwm !
ansond 0:4c9bfcb3e759 153 g = 1.0 - V;
ansond 0:4c9bfcb3e759 154 b = 1.0 - V;
ansond 0:4c9bfcb3e759 155 return;
ansond 0:4c9bfcb3e759 156 }
ansond 0:4c9bfcb3e759 157 if(H > 360.0) H = 0.0; // check values
ansond 0:4c9bfcb3e759 158 if(S > 1.0) S = 1.0;
ansond 0:4c9bfcb3e759 159 if(S < 0.0) S = 0.0;
ansond 0:4c9bfcb3e759 160 if(V > 1.0) V = 1.0;
ansond 0:4c9bfcb3e759 161 if(V < 0.0) V = 0.0;
ansond 0:4c9bfcb3e759 162 h = H / 60.0;
ansond 0:4c9bfcb3e759 163 i = (int) h;
ansond 0:4c9bfcb3e759 164 f = h - i;
ansond 0:4c9bfcb3e759 165 p = V * (1.0 - S);
ansond 0:4c9bfcb3e759 166 q = V * (1.0 - (S * f));
ansond 0:4c9bfcb3e759 167 t = V * (1.0 - (S * (1.0 - f)));
ansond 0:4c9bfcb3e759 168
ansond 0:4c9bfcb3e759 169 switch(i) {
ansond 0:4c9bfcb3e759 170 case 0:
ansond 0:4c9bfcb3e759 171 r = 1.0 - V; // invert pwm !
ansond 0:4c9bfcb3e759 172 g = 1.0 - t;
ansond 0:4c9bfcb3e759 173 b = 1.0 - p;
ansond 0:4c9bfcb3e759 174 break;
ansond 0:4c9bfcb3e759 175 case 1:
ansond 0:4c9bfcb3e759 176 r = 1.0 - q;
ansond 0:4c9bfcb3e759 177 g = 1.0 - V;
ansond 0:4c9bfcb3e759 178 b = 1.0 - p;
ansond 0:4c9bfcb3e759 179 break;
ansond 0:4c9bfcb3e759 180 case 2:
ansond 0:4c9bfcb3e759 181 r = 1.0 - p;
ansond 0:4c9bfcb3e759 182 g = 1.0 - V;
ansond 0:4c9bfcb3e759 183 b = 1.0 - t;
ansond 0:4c9bfcb3e759 184 break;
ansond 0:4c9bfcb3e759 185 case 3:
ansond 0:4c9bfcb3e759 186 r = 1.0 - p;
ansond 0:4c9bfcb3e759 187 g = 1.0 - q;
ansond 0:4c9bfcb3e759 188 b = 1.0 - V;
ansond 0:4c9bfcb3e759 189 break;
ansond 0:4c9bfcb3e759 190 case 4:
ansond 0:4c9bfcb3e759 191 r = 1.0 - t;
ansond 0:4c9bfcb3e759 192 g = 1.0 - p;
ansond 0:4c9bfcb3e759 193 b = 1.0 - V;
ansond 0:4c9bfcb3e759 194 break;
ansond 0:4c9bfcb3e759 195 case 5:
ansond 0:4c9bfcb3e759 196 default:
ansond 0:4c9bfcb3e759 197 r = 1.0 - V;
ansond 0:4c9bfcb3e759 198 g = 1.0 - p;
ansond 0:4c9bfcb3e759 199 b = 1.0 - q;
ansond 0:4c9bfcb3e759 200 break;
ansond 0:4c9bfcb3e759 201 }
ansond 0:4c9bfcb3e759 202 }
ansond 0:4c9bfcb3e759 203
ansond 0:4c9bfcb3e759 204 // turn the RGB LED specific colors
ansond 0:4c9bfcb3e759 205 void ErrorHandler::turnLEDRed() { this->setRGBLED(0.0,1.0,0.2); }
ansond 0:4c9bfcb3e759 206 void ErrorHandler::turnLEDGreen() { this->setRGBLED(120.0,1.0,0.2); }
ansond 0:4c9bfcb3e759 207 void ErrorHandler::turnLEDBlue() { this->setRGBLED(200.0,1.0,0.2); }
ansond 0:4c9bfcb3e759 208 void ErrorHandler::turnLEDBlack() { this->setRGBLED(0,0,0); }
ansond 0:4c9bfcb3e759 209 void ErrorHandler::turnLEDYellow() { this->setRGBLED(60.0,1.0,0.133); }
ansond 73:3e6478c7649f 210 void ErrorHandler::dimRGB(float value) {
ansond 73:3e6478c7649f 211 float H, S, V;
ansond 73:3e6478c7649f 212 H = 120.0 - (120.0*(1.0 - value));
ansond 73:3e6478c7649f 213 S = 1.0 - (1.0*(1.0 - value));
ansond 73:3e6478c7649f 214 V = 0.2 - (0.2*(1.0 - value));
ansond 73:3e6478c7649f 215 this->setRGBLED(H,S,V);
ansond 73:3e6478c7649f 216 }
ansond 0:4c9bfcb3e759 217
ansond 0:4c9bfcb3e759 218 // reset LEDs
ansond 0:4c9bfcb3e759 219 void ErrorHandler::resetLEDs() {
ansond 0:4c9bfcb3e759 220 // turn off all LEDs
ansond 0:4c9bfcb3e759 221 led1 = 0; led2 = 0; led3 = 0; led4 = 0;
ansond 0:4c9bfcb3e759 222 }
ansond 0:4c9bfcb3e759 223
ansond 0:4c9bfcb3e759 224 // blink an LED
ansond 0:4c9bfcb3e759 225 void ErrorHandler::blinkLED(DigitalOut led) {
ansond 72:46c94966311b 226 if (this->m_mutex != NULL) this->m_led_mutex->lock();
ansond 0:4c9bfcb3e759 227 led = 1;
ansond 0:4c9bfcb3e759 228 wait_ms(BLINK_TIME);
ansond 0:4c9bfcb3e759 229 led = 0;
ansond 72:46c94966311b 230 if (this->m_mutex != NULL) this->m_led_mutex->unlock();
ansond 0:4c9bfcb3e759 231 }
ansond 0:4c9bfcb3e759 232
ansond 36:73e343ddca7f 233 // blink the Transport TX LED
ansond 36:73e343ddca7f 234 void ErrorHandler::blinkTransportTxLED() { this->blinkLED(led4); }
ansond 0:4c9bfcb3e759 235
ansond 36:73e343ddca7f 236 // blink the Transport RX LED
ansond 36:73e343ddca7f 237 void ErrorHandler::blinkTransportRxLED() { this->blinkLED(led1); }