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:
Thu Feb 27 06:14:49 2014 +0000
Revision:
5:9e795e139e45
Parent:
4:2469fd2fba1c
Child:
6:c780baa3b7f1
updates

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 5:9e795e139e45 29 #define MAX_LOG_MESSAGE 768 // maximum size of a logging message
ansond 5:9e795e139e45 30
ansond 5:9e795e139e45 31 // Resource Configuration
ansond 5:9e795e139e45 32 #define RESOURCE_NAME_LEN 20 // Resource name max length
ansond 5:9e795e139e45 33 #define RESOURCE_VALUE_LEN 20 // Resource value max length
ansond 5:9e795e139e45 34
ansond 5:9e795e139e45 35 // MapEntry Name length
ansond 5:9e795e139e45 36 #define MAX_NAME_LENGTH 20
ansond 5:9e795e139e45 37
ansond 5:9e795e139e45 38 // Number of Resources our Endpoint has
ansond 5:9e795e139e45 39 #define NUM_RESOURCES 16
ansond 5:9e795e139e45 40
ansond 5:9e795e139e45 41 // IOC <--> Resource Mapping
ansond 5:9e795e139e45 42 #define NUM_MAPPINGS NUM_RESOURCES // matches the number of resources
ansond 0:dcced975fb52 43
ansond 0:dcced975fb52 44 // Light Configuration
ansond 0:dcced975fb52 45 #define NUM_LIGHTS 1 // number of lights in this endpoint
ansond 0:dcced975fb52 46 #define LIGHT_NAME "mbed-nsp-light-%d" // name of each light in this endpoint
ansond 0:dcced975fb52 47 #define LIGHT_NAME_LEN 64 // buffer size for the light name
ansond 0:dcced975fb52 48 #define LIGHT_ON_STATE "0" // initial state of each light in this endpoint
ansond 0:dcced975fb52 49 #define LIGHT_DIM_STATE "25" // initial dimming state of each light in this endpoint
ansond 0:dcced975fb52 50 #define NSP_NODE_TYPE "MBED NSP light node" // Node type
ansond 0:dcced975fb52 51 #define NSP_NODE_LIFETIME "1200" // Node lifetime
ansond 0:dcced975fb52 52 #define RD_UPDATE_PERIOD 60 // The number of seconds between NSP registration messages
ansond 0:dcced975fb52 53
ansond 4:2469fd2fba1c 54 // Endpoint GPS Coordinates
ansond 4:2469fd2fba1c 55 #define ENDPOINT_LOCATION "Oulo Finland" // Where this light/endpoint lives
ansond 4:2469fd2fba1c 56 #define ENDPOINT_GPS_COORDS "65.017210,25.492411" // Where this light/endpoint lives
ansond 4:2469fd2fba1c 57
ansond 0:dcced975fb52 58 // Transport Configuration
ansond 0:dcced975fb52 59 #define NUM_TRANSPORTS 1 // NSP Only
ansond 0:dcced975fb52 60 #define NSP_TRANSPORT 0 // NSP Transport index
ansond 0:dcced975fb52 61
ansond 0:dcced975fb52 62 #define NSP_ADDRESS "192.168.1.150" // Target NSP Service
ansond 0:dcced975fb52 63 #define NSP_PORT 8080 // Target NSP Service Port Number
ansond 0:dcced975fb52 64
ansond 0:dcced975fb52 65 // Main Loop
ansond 0:dcced975fb52 66 #define MAIN_LOOP_SLEEP 100 // sleep time (ms) between main loop iterations
ansond 0:dcced975fb52 67
ansond 0:dcced975fb52 68 // LED Blink Time
ansond 5:9e795e139e45 69 #define BLINK_TIME 100 // LED blink times
ansond 0:dcced975fb52 70
ansond 0:dcced975fb52 71 #endif // _DEFINITIONS_H