Doug Anson / Mbed 2 deprecated mbed-3g-sample

Dependencies:   LM75B mbed mbedConnectorInterface mbedEndpointNetwork_Ublox

Committer:
ansond
Date:
Tue Apr 28 05:04:20 2015 +0000
Revision:
0:a507bbd93e47
Child:
2:36bc50ce23f2
initial checkin

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 0:a507bbd93e47 1 /**
ansond 0:a507bbd93e47 2 * @file main.cpp
ansond 0:a507bbd93e47 3 * @brief mbed Connected Home Endpoint main entry point
ansond 0:a507bbd93e47 4 * @author Doug Anson
ansond 0:a507bbd93e47 5 * @version 1.0
ansond 0:a507bbd93e47 6 * @see
ansond 0:a507bbd93e47 7 *
ansond 0:a507bbd93e47 8 * Copyright (c) 2014
ansond 0:a507bbd93e47 9 *
ansond 0:a507bbd93e47 10 * Licensed under the Apache License, Version 2.0 (the "License");
ansond 0:a507bbd93e47 11 * you may not use this file except in compliance with the License.
ansond 0:a507bbd93e47 12 * You may obtain a copy of the License at
ansond 0:a507bbd93e47 13 *
ansond 0:a507bbd93e47 14 * http://www.apache.org/licenses/LICENSE-2.0
ansond 0:a507bbd93e47 15 *
ansond 0:a507bbd93e47 16 * Unless required by applicable law or agreed to in writing, software
ansond 0:a507bbd93e47 17 * distributed under the License is distributed on an "AS IS" BASIS,
ansond 0:a507bbd93e47 18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ansond 0:a507bbd93e47 19 * See the License for the specific language governing permissions and
ansond 0:a507bbd93e47 20 * limitations under the License.
ansond 0:a507bbd93e47 21 */
ansond 0:a507bbd93e47 22
ansond 0:a507bbd93e47 23 // mbed Connector Interface (configuration)
ansond 0:a507bbd93e47 24 #include "mbedConnectorInterface.h"
ansond 0:a507bbd93e47 25
ansond 0:a507bbd93e47 26 // U-Blox Cellular Support
ansond 0:a507bbd93e47 27 #include "MBEDUbloxCellRadio.h"
ansond 0:a507bbd93e47 28 //MDMRtos<MDMSerial> modem;
ansond 0:a507bbd93e47 29 MDMSerial modem;
ansond 0:a507bbd93e47 30 MBEDUbloxCellRadio cellular((void *)&modem);
ansond 0:a507bbd93e47 31
ansond 0:a507bbd93e47 32 // mbed Connector Endpoint includes
ansond 0:a507bbd93e47 33 #include "ConnectorEndpoint.h"
ansond 0:a507bbd93e47 34 #include "OptionsBuilder.h"
ansond 0:a507bbd93e47 35
ansond 0:a507bbd93e47 36 // USB Serial port access for debugging/logging
ansond 0:a507bbd93e47 37 RawSerial pc(USBTX,USBRX);
ansond 0:a507bbd93e47 38
ansond 0:a507bbd93e47 39 // Logging facility
ansond 0:a507bbd93e47 40 Logger logger(&pc);
ansond 0:a507bbd93e47 41
ansond 0:a507bbd93e47 42 // Static Resources
ansond 0:a507bbd93e47 43 #include "StaticResource.h"
ansond 0:a507bbd93e47 44 StaticResource mfg(&logger,"dev/mfg","Freescale");
ansond 0:a507bbd93e47 45 StaticResource model(&logger,"dev/mdl","mbed Ethernet node");
ansond 0:a507bbd93e47 46
ansond 0:a507bbd93e47 47 //
ansond 0:a507bbd93e47 48 // Dynamic Resource Note:
ansond 0:a507bbd93e47 49 //
ansond 0:a507bbd93e47 50 // mbedConnectorInterface supports up to IPT_MAX_ENTRIES
ansond 0:a507bbd93e47 51 // (currently 5) independent dynamic resources.
ansond 0:a507bbd93e47 52 //
ansond 0:a507bbd93e47 53 // You can increase this (at the cost of memory)
ansond 0:a507bbd93e47 54 // in mbedConnectorinterface.h
ansond 0:a507bbd93e47 55 //
ansond 0:a507bbd93e47 56
ansond 0:a507bbd93e47 57 // Sample Dynamic Resource
ansond 0:a507bbd93e47 58 #include "SampleDynamicResource.h"
ansond 0:a507bbd93e47 59 SampleDynamicResource sample(&logger,"999/999/9999");
ansond 0:a507bbd93e47 60
ansond 0:a507bbd93e47 61 // Light Resource
ansond 0:a507bbd93e47 62 #include "LightResource.h"
ansond 0:a507bbd93e47 63 LightResource light(&logger,"311/0/5850");
ansond 0:a507bbd93e47 64
ansond 0:a507bbd93e47 65 // Temperature Resource
ansond 0:a507bbd93e47 66 #include "TemperatureResource.h"
ansond 0:a507bbd93e47 67 TemperatureResource temperature(&logger,"303/0/5700");
ansond 0:a507bbd93e47 68
ansond 0:a507bbd93e47 69 // Set our own unique endpoint name
ansond 0:a507bbd93e47 70 #define MY_ENDPOINT_NAME "mbed-eth-endpoint"
ansond 0:a507bbd93e47 71
ansond 0:a507bbd93e47 72 // My NSP Domain
ansond 0:a507bbd93e47 73 #define MY_NSP_DOMAIN "domain"
ansond 0:a507bbd93e47 74
ansond 0:a507bbd93e47 75 // Customization Example: My custom NSP IPv6 address and NSP CoAP port
ansond 0:a507bbd93e47 76 uint8_t my_nsp_address[NSP_IP_ADDRESS_LENGTH] = {10,1,0,26};
ansond 0:a507bbd93e47 77 int my_nsp_coap_port = 5683;
ansond 0:a507bbd93e47 78
ansond 0:a507bbd93e47 79 // called from the Endpoint::start() below to create resources and the endpoint internals...
ansond 0:a507bbd93e47 80 Connector::Options *configure_endpoint(Connector::OptionsBuilder &config)
ansond 0:a507bbd93e47 81 {
ansond 0:a507bbd93e47 82 // Build the endpoint configuration parameters
ansond 0:a507bbd93e47 83 logger.log("configure_endpoint: building endpoint configuration...");
ansond 0:a507bbd93e47 84 return config.setEndpointNodename(MY_ENDPOINT_NAME) // custom endpoint name
ansond 0:a507bbd93e47 85 .setNSPAddress(my_nsp_address) // custom NSP address
ansond 0:a507bbd93e47 86 .setDomain(MY_NSP_DOMAIN) // custom NSP domain
ansond 0:a507bbd93e47 87 .setNSPPortNumber(my_nsp_coap_port) // custom NSP CoAP port
ansond 0:a507bbd93e47 88
ansond 0:a507bbd93e47 89 // add the static resource representing this endpoint
ansond 0:a507bbd93e47 90 .addResource(&mfg)
ansond 0:a507bbd93e47 91 .addResource(&model)
ansond 0:a507bbd93e47 92
ansond 0:a507bbd93e47 93 // add a Sample Dynamic Resource
ansond 0:a507bbd93e47 94 .addResource(&sample)
ansond 0:a507bbd93e47 95
ansond 0:a507bbd93e47 96 // Add my specific physical dynamic resources...
ansond 0:a507bbd93e47 97 .addResource(&light)
ansond 0:a507bbd93e47 98 .addResource(&temperature)
ansond 0:a507bbd93e47 99
ansond 0:a507bbd93e47 100 // finalize the configuration...
ansond 0:a507bbd93e47 101 .build();
ansond 0:a507bbd93e47 102 }
ansond 0:a507bbd93e47 103
ansond 0:a507bbd93e47 104 // main entry point...
ansond 0:a507bbd93e47 105 int main()
ansond 0:a507bbd93e47 106 {
ansond 0:a507bbd93e47 107 // Announce
ansond 0:a507bbd93e47 108 logger.log("\r\n\r\nmbed mDS Sample Endpoint v1.0 (Ethernet)");
ansond 0:a507bbd93e47 109
ansond 0:a507bbd93e47 110 // we have to plumb our network first
ansond 0:a507bbd93e47 111 Connector::Endpoint::plumbNetwork();
ansond 0:a507bbd93e47 112
ansond 0:a507bbd93e47 113 // starts the endpoint by finalizing its configuration (configure_endpoint() above called),creating a Thread and reading NSP events...
ansond 0:a507bbd93e47 114 logger.log("Start the endpoint to finish setup and enter the main loop...");
ansond 0:a507bbd93e47 115 Connector::Endpoint::start();
ansond 0:a507bbd93e47 116 }