Core Base Classes for the Light Endpoints
Dependents: mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more
main.cpp@69:90fb53584459, 2014-03-03 (annotated)
- Committer:
- ansond
- Date:
- Mon Mar 03 22:04:21 2014 +0000
- Revision:
- 69:90fb53584459
- Parent:
- 68:e6431dfe2f30
- Child:
- 70:055ebf51f6ad
updates
Who changed what in which revision?
User | Revision | Line number | New 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 "MBEDEndpoint.h" |
ansond | 0:4c9bfcb3e759 | 20 | |
ansond | 18:bc165829bb88 | 21 | #include <string.h> |
ansond | 18:bc165829bb88 | 22 | #include <stdlib.h> |
ansond | 18:bc165829bb88 | 23 | |
ansond | 0:4c9bfcb3e759 | 24 | // Ethernet Interface |
ansond | 0:4c9bfcb3e759 | 25 | EthernetInterface ethernet; |
ansond | 0:4c9bfcb3e759 | 26 | |
ansond | 0:4c9bfcb3e759 | 27 | // Serial Console Support |
ansond | 68:e6431dfe2f30 | 28 | Serial pc(USBTX, USBRX); |
ansond | 0:4c9bfcb3e759 | 29 | |
ansond | 0:4c9bfcb3e759 | 30 | // LCD Support |
ansond | 0:4c9bfcb3e759 | 31 | #include "C12832_lcd.h" |
ansond | 0:4c9bfcb3e759 | 32 | C12832_LCD lcd; |
ansond | 0:4c9bfcb3e759 | 33 | |
ansond | 0:4c9bfcb3e759 | 34 | // Instances for the Endpoint |
ansond | 0:4c9bfcb3e759 | 35 | ErrorHandler *error_handler = NULL; |
ansond | 0:4c9bfcb3e759 | 36 | MBEDEndpoint *endpoint = NULL; |
ansond | 18:bc165829bb88 | 37 | |
ansond | 0:4c9bfcb3e759 | 38 | // ErrorHandler (logger) |
ansond | 20:f2dbbd852e08 | 39 | ErrorHandler *logger() { return error_handler; } |
ansond | 20:f2dbbd852e08 | 40 | |
ansond | 20:f2dbbd852e08 | 41 | // translate a closedown code to a string |
ansond | 20:f2dbbd852e08 | 42 | char str_code[16]; |
ansond | 20:f2dbbd852e08 | 43 | char *strCode(int code) { |
ansond | 20:f2dbbd852e08 | 44 | memset(str_code,0,16); |
ansond | 20:f2dbbd852e08 | 45 | if (code == 1) strcpy(str_code,"(USER)"); |
ansond | 20:f2dbbd852e08 | 46 | if (code == 2) strcpy(str_code,"(ERROR)"); |
ansond | 20:f2dbbd852e08 | 47 | return str_code; |
ansond | 20:f2dbbd852e08 | 48 | } |
ansond | 0:4c9bfcb3e759 | 49 | |
ansond | 0:4c9bfcb3e759 | 50 | // close down the application and exit |
ansond | 20:f2dbbd852e08 | 51 | void closedown(int code) { |
ansond | 0:4c9bfcb3e759 | 52 | if (endpoint != NULL) { |
ansond | 0:4c9bfcb3e759 | 53 | error_handler->log("Closing down Endpoint..."); |
ansond | 0:4c9bfcb3e759 | 54 | delete endpoint; |
ansond | 0:4c9bfcb3e759 | 55 | } |
ansond | 26:791d22d43cb4 | 56 | if (error_handler != NULL) delete error_handler; |
ansond | 0:4c9bfcb3e759 | 57 | pc.printf("Exiting...\r\n"); |
ansond | 20:f2dbbd852e08 | 58 | lcd.cls(); |
ansond | 0:4c9bfcb3e759 | 59 | lcd.locate(0,0); |
ansond | 20:f2dbbd852e08 | 60 | lcd.printf("Endpoint Shutdown %s",strCode(code)); |
ansond | 0:4c9bfcb3e759 | 61 | exit(1); |
ansond | 0:4c9bfcb3e759 | 62 | } |
ansond | 0:4c9bfcb3e759 | 63 | |
ansond | 0:4c9bfcb3e759 | 64 | // Main Entry |
ansond | 0:4c9bfcb3e759 | 65 | int main() { |
ansond | 0:4c9bfcb3e759 | 66 | error_handler = new ErrorHandler(&pc,&lcd); |
ansond | 0:4c9bfcb3e759 | 67 | endpoint = new MBEDEndpoint(error_handler,ðernet); |
ansond | 0:4c9bfcb3e759 | 68 | if (endpoint != NULL) endpoint->run(); |
ansond | 0:4c9bfcb3e759 | 69 | } |