MBED NanoService Lighting Endpoint for NXP Ublox (Ethernet enabled)

Dependencies:   C027 C12832 EthernetInterface StatusReporter LM75B endpoint_core endpoint_nsp mbed-rtos mbed nsp_resources

Committer:
ansond
Date:
Tue Feb 25 16:56:16 2014 +0000
Revision:
0:dcced975fb52
Child:
4:2469fd2fba1c
initial checkin

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 0:dcced975fb52 1 /* Copyright C2013 Doug Anson, MIT License
ansond 0:dcced975fb52 2 *
ansond 0:dcced975fb52 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 0:dcced975fb52 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 0:dcced975fb52 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 0:dcced975fb52 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 0:dcced975fb52 7 * furnished to do so, subject to the following conditions:
ansond 0:dcced975fb52 8 *
ansond 0:dcced975fb52 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 0:dcced975fb52 10 * substantial portions of the Software.
ansond 0:dcced975fb52 11 *
ansond 0:dcced975fb52 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 0:dcced975fb52 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 0:dcced975fb52 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 0:dcced975fb52 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 0:dcced975fb52 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 0:dcced975fb52 17 */
ansond 0:dcced975fb52 18
ansond 0:dcced975fb52 19 #ifndef _DEFINITIONS_H_
ansond 0:dcced975fb52 20 #define _DEFINITIONS_H_
ansond 0:dcced975fb52 21
ansond 0:dcced975fb52 22 // platform
ansond 0:dcced975fb52 23 #include "mbed.h"
ansond 0:dcced975fb52 24
ansond 0:dcced975fb52 25 // Our Endpoint Version Annoucement
ansond 0:dcced975fb52 26 #define ENDPOINT_VERSION_ANNOUNCE "\r\nMBED IMPACT(NSP) Endpoint v1.0"
ansond 0:dcced975fb52 27
ansond 0:dcced975fb52 28 // Error Handler
ansond 0:dcced975fb52 29 #define MAX_LOG_MESSAGE 256 // maximum size of a logging message
ansond 0:dcced975fb52 30
ansond 0:dcced975fb52 31 // Light Configuration
ansond 0:dcced975fb52 32 #define NUM_LIGHTS 1 // number of lights in this endpoint
ansond 0:dcced975fb52 33 #define LIGHT_NAME "mbed-nsp-light-%d" // name of each light in this endpoint
ansond 0:dcced975fb52 34 #define LIGHT_NAME_LEN 64 // buffer size for the light name
ansond 0:dcced975fb52 35 #define LIGHT_ON_STATE "0" // initial state of each light in this endpoint
ansond 0:dcced975fb52 36 #define LIGHT_DIM_STATE "25" // initial dimming state of each light in this endpoint
ansond 0:dcced975fb52 37 #define NSP_NODE_TYPE "MBED NSP light node" // Node type
ansond 0:dcced975fb52 38 #define NSP_NODE_LIFETIME "1200" // Node lifetime
ansond 0:dcced975fb52 39 #define RD_UPDATE_PERIOD 60 // The number of seconds between NSP registration messages
ansond 0:dcced975fb52 40
ansond 0:dcced975fb52 41 // Resource Configuration
ansond 0:dcced975fb52 42 #define RESOURCE_NAME_LEN 64 // Resource name max length
ansond 0:dcced975fb52 43 #define RESOURCE_VALUE_LEN 64 // Resource value max length
ansond 0:dcced975fb52 44
ansond 0:dcced975fb52 45 // Transport Configuration
ansond 0:dcced975fb52 46 #define NUM_TRANSPORTS 1 // NSP Only
ansond 0:dcced975fb52 47 #define NSP_TRANSPORT 0 // NSP Transport index
ansond 0:dcced975fb52 48
ansond 0:dcced975fb52 49 #define NSP_ADDRESS "192.168.1.150" // Target NSP Service
ansond 0:dcced975fb52 50 #define NSP_PORT 8080 // Target NSP Service Port Number
ansond 0:dcced975fb52 51
ansond 0:dcced975fb52 52 // Main Loop
ansond 0:dcced975fb52 53 #define MAIN_LOOP_SLEEP 100 // sleep time (ms) between main loop iterations
ansond 0:dcced975fb52 54
ansond 0:dcced975fb52 55 // LED Blink Time
ansond 0:dcced975fb52 56 #define BLINK_TIME 100 // LED blink times
ansond 0:dcced975fb52 57
ansond 0:dcced975fb52 58 #endif // _DEFINITIONS_H