M2X with Seeed Ethernet using Seeed Accelerometer demo

Dependencies:   LM75B M2XStreamClient jsonlite mbed-rtos mbed

Fork of m2x-seeed_ethernet_demo by Sean Newton

Committer:
SeanNewton
Date:
Tue Sep 30 00:34:03 2014 +0000
Revision:
9:facd3d0242b0
Parent:
8:a94ba2e0cd04
Update M2XStreamClient
;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
SeanNewton 8:a94ba2e0cd04 1 /* Copyright (C) 2012 mbed.org, MIT License
SeanNewton 8:a94ba2e0cd04 2 *
SeanNewton 8:a94ba2e0cd04 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
SeanNewton 8:a94ba2e0cd04 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
SeanNewton 8:a94ba2e0cd04 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
SeanNewton 8:a94ba2e0cd04 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
SeanNewton 8:a94ba2e0cd04 7 * furnished to do so, subject to the following conditions:
SeanNewton 8:a94ba2e0cd04 8 *
SeanNewton 8:a94ba2e0cd04 9 * The above copyright notice and this permission notice shall be included in all copies or
SeanNewton 8:a94ba2e0cd04 10 * substantial portions of the Software.
SeanNewton 8:a94ba2e0cd04 11 *
SeanNewton 8:a94ba2e0cd04 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
SeanNewton 8:a94ba2e0cd04 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
SeanNewton 8:a94ba2e0cd04 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
SeanNewton 8:a94ba2e0cd04 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
SeanNewton 8:a94ba2e0cd04 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
SeanNewton 8:a94ba2e0cd04 17 */
SeanNewton 8:a94ba2e0cd04 18
SeanNewton 8:a94ba2e0cd04 19 #pragma once
SeanNewton 8:a94ba2e0cd04 20 #include "wiznet.h"
SeanNewton 8:a94ba2e0cd04 21
SeanNewton 8:a94ba2e0cd04 22 /** Interface using Wiznet chip to connect to an IP-based network
SeanNewton 8:a94ba2e0cd04 23 *
SeanNewton 8:a94ba2e0cd04 24 */
SeanNewton 8:a94ba2e0cd04 25 class WIZnetInterface: public WIZnet_Chip {
SeanNewton 8:a94ba2e0cd04 26 public:
SeanNewton 8:a94ba2e0cd04 27
SeanNewton 8:a94ba2e0cd04 28 /**
SeanNewton 8:a94ba2e0cd04 29 * Constructor
SeanNewton 8:a94ba2e0cd04 30 *
SeanNewton 8:a94ba2e0cd04 31 * \param mosi mbed pin to use for SPI
SeanNewton 8:a94ba2e0cd04 32 * \param miso mbed pin to use for SPI
SeanNewton 8:a94ba2e0cd04 33 * \param sclk mbed pin to use for SPI
SeanNewton 8:a94ba2e0cd04 34 * \param cs chip select of the WIZnet_Chip
SeanNewton 8:a94ba2e0cd04 35 * \param reset reset pin of the WIZnet_Chip
SeanNewton 8:a94ba2e0cd04 36 */
SeanNewton 8:a94ba2e0cd04 37 WIZnetInterface(PinName mosi, PinName miso, PinName sclk, PinName cs, PinName reset);
SeanNewton 8:a94ba2e0cd04 38 WIZnetInterface(SPI* spi, PinName cs, PinName reset);
SeanNewton 8:a94ba2e0cd04 39
SeanNewton 8:a94ba2e0cd04 40 /** Initialize the interface with DHCP.
SeanNewton 8:a94ba2e0cd04 41 * Initialize the interface and configure it to use DHCP (no connection at this point).
SeanNewton 8:a94ba2e0cd04 42 * \return 0 on success, a negative number on failure
SeanNewton 8:a94ba2e0cd04 43 */
SeanNewton 8:a94ba2e0cd04 44 int init(uint8_t * mac); //With DHCP
SeanNewton 8:a94ba2e0cd04 45
SeanNewton 8:a94ba2e0cd04 46 /** Initialize the interface with a static IP address.
SeanNewton 8:a94ba2e0cd04 47 * Initialize the interface and configure it with the following static configuration (no connection at this point).
SeanNewton 8:a94ba2e0cd04 48 * \param ip the IP address to use
SeanNewton 8:a94ba2e0cd04 49 * \param mask the IP address mask
SeanNewton 8:a94ba2e0cd04 50 * \param gateway the gateway to use
SeanNewton 8:a94ba2e0cd04 51 * \return 0 on success, a negative number on failure
SeanNewton 8:a94ba2e0cd04 52 */
SeanNewton 8:a94ba2e0cd04 53 int init(uint8_t * mac, const char* ip, const char* mask, const char* gateway);
SeanNewton 8:a94ba2e0cd04 54
SeanNewton 8:a94ba2e0cd04 55 /** Connect
SeanNewton 8:a94ba2e0cd04 56 * Bring the interface up, start DHCP if needed.
SeanNewton 8:a94ba2e0cd04 57 * \return 0 on success, a negative number on failure
SeanNewton 8:a94ba2e0cd04 58 */
SeanNewton 8:a94ba2e0cd04 59 int connect();
SeanNewton 8:a94ba2e0cd04 60
SeanNewton 8:a94ba2e0cd04 61 /** Disconnect
SeanNewton 8:a94ba2e0cd04 62 * Bring the interface down
SeanNewton 8:a94ba2e0cd04 63 * \return 0 on success, a negative number on failure
SeanNewton 8:a94ba2e0cd04 64 */
SeanNewton 8:a94ba2e0cd04 65 int disconnect();
SeanNewton 8:a94ba2e0cd04 66
SeanNewton 8:a94ba2e0cd04 67 /** Get IP address & MAC address
SeanNewton 8:a94ba2e0cd04 68 *
SeanNewton 8:a94ba2e0cd04 69 * @ returns ip address
SeanNewton 8:a94ba2e0cd04 70 */
SeanNewton 8:a94ba2e0cd04 71 char* getIPAddress();
SeanNewton 8:a94ba2e0cd04 72 char* getNetworkMask();
SeanNewton 8:a94ba2e0cd04 73 char* getGateway();
SeanNewton 8:a94ba2e0cd04 74 char* getMACAddress();
SeanNewton 8:a94ba2e0cd04 75
SeanNewton 8:a94ba2e0cd04 76 int IPrenew(int timeout_ms = 15*1000);
SeanNewton 8:a94ba2e0cd04 77
SeanNewton 8:a94ba2e0cd04 78 private:
SeanNewton 8:a94ba2e0cd04 79 char ip_string[20];
SeanNewton 8:a94ba2e0cd04 80 char mask_string[20];
SeanNewton 8:a94ba2e0cd04 81 char gw_string[20];
SeanNewton 8:a94ba2e0cd04 82 char mac_string[20];
SeanNewton 8:a94ba2e0cd04 83 bool ip_set;
SeanNewton 8:a94ba2e0cd04 84 };
SeanNewton 8:a94ba2e0cd04 85
SeanNewton 8:a94ba2e0cd04 86 #include "TCPSocketConnection.h"
SeanNewton 8:a94ba2e0cd04 87 #include "TCPSocketServer.h"
SeanNewton 8:a94ba2e0cd04 88 #include "UDPSocket.h"