MBED MQTT Lighting Endpoint for NXP Ublox (cellular enabled)

Dependencies:   C027_Support C12832 StatusReporter LM75B MQTT-ansond c027_radios endpoint_core endpoint_mqtt mbed-rtos mbed

Committer:
ansond
Date:
Sat Apr 12 06:35:30 2014 +0000
Revision:
232:40c0dba362a6
Parent:
222:d1889af2bb23
Child:
234:4cae2df7ab43
updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 172:e996f6ce25f7 1 /* Copyright C2013 Doug Anson, MIT License
ansond 172:e996f6ce25f7 2 *
ansond 172:e996f6ce25f7 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 172:e996f6ce25f7 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 172:e996f6ce25f7 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 172:e996f6ce25f7 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 172:e996f6ce25f7 7 * furnished to do so, subject to the following conditions:
ansond 172:e996f6ce25f7 8 *
ansond 172:e996f6ce25f7 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 172:e996f6ce25f7 10 * substantial portions of the Software.
ansond 172:e996f6ce25f7 11 *
ansond 172:e996f6ce25f7 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 172:e996f6ce25f7 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 172:e996f6ce25f7 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 172:e996f6ce25f7 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 172:e996f6ce25f7 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 172:e996f6ce25f7 17 */
ansond 172:e996f6ce25f7 18
ansond 172:e996f6ce25f7 19 #ifndef _DEFINITIONS_H_
ansond 172:e996f6ce25f7 20 #define _DEFINITIONS_H_
ansond 172:e996f6ce25f7 21
ansond 172:e996f6ce25f7 22 // platform
ansond 172:e996f6ce25f7 23 #include "mbed.h"
ansond 172:e996f6ce25f7 24
ansond 173:b8f479524c92 25 // Platform Switch
ansond 202:eb38b2ac75af 26 #define _ENDPOINT_UBLOX_PLATFORM true // uncomment for the U-Blox MBED platform
ansond 202:eb38b2ac75af 27 //#define _ENDPOINT_FREESCALE_PLATFORM true // uncomment for the Freescale Freedom MBED platform
ansond 202:eb38b2ac75af 28 //#define _ENDPOINT_NXP_PLATFORM true // uncomment for the NXP MBED platform
ansond 173:b8f479524c92 29
ansond 198:fa509ef2cafe 30 // Network Usage (default is Ethernet)
ansond 202:eb38b2ac75af 31 #define CELLULAR_NETWORK true // true - use cellular network, false - use ethernet (cannot co-exist together)
ansond 198:fa509ef2cafe 32
ansond 190:bdf70b7aa906 33 // what kind of personality we are...
ansond 202:eb38b2ac75af 34 //#define LIGHT_PERSONALITY true // the endpoint will be a (set of) lights
ansond 202:eb38b2ac75af 35 #define COPCAR_PERSONALITY true // the endpoint will emulate a cop car
ansond 190:bdf70b7aa906 36
ansond 172:e996f6ce25f7 37 // include common definitions
ansond 172:e996f6ce25f7 38 #include "CommonDefinitions.h"
ansond 172:e996f6ce25f7 39
ansond 174:4da75aabdd67 40 // MQTT specific support
ansond 174:4da75aabdd67 41 #include "MQTTDefinitions.h"
ansond 172:e996f6ce25f7 42
ansond 222:d1889af2bb23 43 // OVERRIDES
ansond 222:d1889af2bb23 44 #undef GW_IPADDRESS
ansond 222:d1889af2bb23 45 #undef IOC_HOST_NAME
ansond 222:d1889af2bb23 46 #undef MQTT_HOSTNAME
ansond 222:d1889af2bb23 47 #define GW_IPADDRESS "66.68.51.171" // AnsonWorks
ansond 222:d1889af2bb23 48 #define IOC_HOST_NAME "193.60.130.112" // IOC Web - iocweb.bcu.ac.uk
ansond 222:d1889af2bb23 49 #define MQTT_HOSTNAME "193.60.130.110" // IOC MQTT Broker Host - iocana.bcu.ac.uk
ansond 222:d1889af2bb23 50
ansond 172:e996f6ce25f7 51 // Philips Light Config
ansond 202:eb38b2ac75af 52 #define PL_ENABLE false // true - enable for endpoint light, false - disable
ansond 202:eb38b2ac75af 53 #define PL_LIGHT_ID PL_LIGHT_ID_BILL // Default light for Philips Light
ansond 172:e996f6ce25f7 54
ansond 172:e996f6ce25f7 55 // External LED Light Configuration
ansond 220:9b566a5c88ae 56 #define EXT_LED_ENABLE true // true - enable external LED endpoint light, false - disable
ansond 172:e996f6ce25f7 57
ansond 172:e996f6ce25f7 58 // Endpoint GPS Coordinates/Location
ansond 202:eb38b2ac75af 59 #define ENDPOINT_LOCATION "Las Vegas Police Dept" // Where this light/endpoint lives
ansond 232:40c0dba362a6 60 #define ENDPOINT_GPS_COORDS "-115.147683,36.131735" // Joe Brown Drive
ansond 172:e996f6ce25f7 61
ansond 180:a50a4e8c9345 62 // Reset our config values if needed
ansond 180:a50a4e8c9345 63 #ifdef _ENDPOINT_UBLOX_PLATFORM
ansond 188:a853e563f876 64 #define UBLOX_USE_3G true // use 3G or ethernet
ansond 188:a853e563f876 65 #define UBLOX_MODEM UbloxUSBCDMAModem // CDMA modem
ansond 188:a853e563f876 66 #define UBLOX_CDMA_DELAY_MS 1000 // connect delay in MS
ansond 188:a853e563f876 67 #define UBLOX_GPS_FREQ 100000 // GPS freq in ns
ansond 188:a853e563f876 68 #define UBLOX_GPS_POLL_MS 5000 // poll the GPS every 5 seconds
ansond 180:a50a4e8c9345 69 #endif
ansond 180:a50a4e8c9345 70
ansond 172:e996f6ce25f7 71 // MBED doesnt have a good notion of time - so we code it here
ansond 172:e996f6ce25f7 72 #define ENDPOINT_STARTTIME "\"STARTDATETIME\":\"2014-03-09T22:03:06-07:00\","
ansond 172:e996f6ce25f7 73 #define ENDPOINT_STOPTIME "\"ENDDATETIME\":\"2015-03-10T03:35:55-07:00\","
ansond 172:e996f6ce25f7 74 #define ENDPOINT_TIMEZONE "\"TIMEZONEOFFSET\":\"-07:00\""
ansond 172:e996f6ce25f7 75
ansond 174:4da75aabdd67 76 // DEBUG Memory Debug Enable/Disable
ansond 174:4da75aabdd67 77 // #define ENABLE_MEMORY_DEBUG true // false - disable, true - enable
ansond 172:e996f6ce25f7 78
ansond 174:4da75aabdd67 79 // DEBUG Hush Logging
ansond 174:4da75aabdd67 80 //#define HUSH_LOG true // false - logging output, true - no logging
ansond 172:e996f6ce25f7 81
ansond 174:4da75aabdd67 82 // DEBUG Hush LED usage
ansond 220:9b566a5c88ae 83 //#define HUSH_LEDS true // false - enable LEDs, true - disable LEDs
ansond 172:e996f6ce25f7 84
ansond 174:4da75aabdd67 85 // KEIL: our MAC address
ansond 174:4da75aabdd67 86 //#define MAC_ADDRESS 0xa0,0x12,0xAB,0xE3,0x4F,0x56
ansond 172:e996f6ce25f7 87
ansond 172:e996f6ce25f7 88 #endif // _DEFINITIONS_H