This is an OSC library for the mbed, created to be compatible with Recotana\'s OSCClass library (http://recotana.com) for the Arduino with Ethernet shield. I have also used parts of the OSC Transceiver(Sender/Receiver) code by xshige. It has many limitations, but it works for simple things (check comments on the mbedOSC.h). It will be evolving. written by: Alvaro Cassinelli, 7.10.2011

Dependencies:   mbed

Committer:
mbedalvaro
Date:
Sat Oct 15 14:15:55 2011 +0000
Revision:
0:f76708a93fb3
First working test of this simple OSC library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbedalvaro 0:f76708a93fb3 1
mbedalvaro 0:f76708a93fb3 2 /*
mbedalvaro 0:f76708a93fb3 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
mbedalvaro 0:f76708a93fb3 4
mbedalvaro 0:f76708a93fb3 5 Permission is hereby granted, free of charge, to any person obtaining a copy
mbedalvaro 0:f76708a93fb3 6 of this software and associated documentation files (the "Software"), to deal
mbedalvaro 0:f76708a93fb3 7 in the Software without restriction, including without limitation the rights
mbedalvaro 0:f76708a93fb3 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
mbedalvaro 0:f76708a93fb3 9 copies of the Software, and to permit persons to whom the Software is
mbedalvaro 0:f76708a93fb3 10 furnished to do so, subject to the following conditions:
mbedalvaro 0:f76708a93fb3 11
mbedalvaro 0:f76708a93fb3 12 The above copyright notice and this permission notice shall be included in
mbedalvaro 0:f76708a93fb3 13 all copies or substantial portions of the Software.
mbedalvaro 0:f76708a93fb3 14
mbedalvaro 0:f76708a93fb3 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
mbedalvaro 0:f76708a93fb3 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
mbedalvaro 0:f76708a93fb3 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
mbedalvaro 0:f76708a93fb3 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
mbedalvaro 0:f76708a93fb3 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mbedalvaro 0:f76708a93fb3 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
mbedalvaro 0:f76708a93fb3 21 THE SOFTWARE.
mbedalvaro 0:f76708a93fb3 22 */
mbedalvaro 0:f76708a93fb3 23
mbedalvaro 0:f76708a93fb3 24 /** \file
mbedalvaro 0:f76708a93fb3 25 Ethernet network interface header file
mbedalvaro 0:f76708a93fb3 26 */
mbedalvaro 0:f76708a93fb3 27
mbedalvaro 0:f76708a93fb3 28 #ifndef ETHERNETNETIF_H
mbedalvaro 0:f76708a93fb3 29 #define ETHERNETNETIF_H
mbedalvaro 0:f76708a93fb3 30
mbedalvaro 0:f76708a93fb3 31 struct netif;
mbedalvaro 0:f76708a93fb3 32
mbedalvaro 0:f76708a93fb3 33 #include "mbed.h"
mbedalvaro 0:f76708a93fb3 34
mbedalvaro 0:f76708a93fb3 35 #include "if/lwip/LwipNetIf.h"
mbedalvaro 0:f76708a93fb3 36
mbedalvaro 0:f76708a93fb3 37 ///Ethernet network interface return codes
mbedalvaro 0:f76708a93fb3 38 enum EthernetErr
mbedalvaro 0:f76708a93fb3 39 {
mbedalvaro 0:f76708a93fb3 40 __ETH_MIN = -0xFFFF,
mbedalvaro 0:f76708a93fb3 41 ETH_TIMEOUT, ///<Timeout during setup
mbedalvaro 0:f76708a93fb3 42 ETH_OK = 0 ///<Success
mbedalvaro 0:f76708a93fb3 43 };
mbedalvaro 0:f76708a93fb3 44
mbedalvaro 0:f76708a93fb3 45 ///Ethernet network interface
mbedalvaro 0:f76708a93fb3 46 /**
mbedalvaro 0:f76708a93fb3 47 This class provides Ethernet connectivity to the stack
mbedalvaro 0:f76708a93fb3 48 */
mbedalvaro 0:f76708a93fb3 49 class EthernetNetIf : public LwipNetIf
mbedalvaro 0:f76708a93fb3 50 {
mbedalvaro 0:f76708a93fb3 51 public:
mbedalvaro 0:f76708a93fb3 52 ///Instantiates the Interface and register it against the stack, DHCP will be used
mbedalvaro 0:f76708a93fb3 53 EthernetNetIf(); //W/ DHCP
mbedalvaro 0:f76708a93fb3 54
mbedalvaro 0:f76708a93fb3 55 ///Instantiates the Interface and register it against the stack, DHCP will not be used
mbedalvaro 0:f76708a93fb3 56 /**
mbedalvaro 0:f76708a93fb3 57 IpAddr is a container class that can be constructed with either 4 bytes or no parameters for a null IP address.
mbedalvaro 0:f76708a93fb3 58 */
mbedalvaro 0:f76708a93fb3 59 EthernetNetIf(IpAddr ip, IpAddr netmask, IpAddr gateway, IpAddr dns); //W/o DHCP
mbedalvaro 0:f76708a93fb3 60 virtual ~EthernetNetIf();
mbedalvaro 0:f76708a93fb3 61
mbedalvaro 0:f76708a93fb3 62 ///Brings the interface up
mbedalvaro 0:f76708a93fb3 63 /**
mbedalvaro 0:f76708a93fb3 64 Uses DHCP if necessary
mbedalvaro 0:f76708a93fb3 65 @param timeout_ms : You can set the timeout parameter in milliseconds, if not it defaults to 15s
mbedalvaro 0:f76708a93fb3 66 @return : ETH_OK on success or ETH_TIMEOUT on timeout
mbedalvaro 0:f76708a93fb3 67 */
mbedalvaro 0:f76708a93fb3 68 EthernetErr setup(int timeout_ms = 15000);
mbedalvaro 0:f76708a93fb3 69
mbedalvaro 0:f76708a93fb3 70 virtual void poll();
mbedalvaro 0:f76708a93fb3 71
mbedalvaro 0:f76708a93fb3 72 private:
mbedalvaro 0:f76708a93fb3 73 Timer m_ethArpTimer;
mbedalvaro 0:f76708a93fb3 74 Timer m_dhcpCoarseTimer;
mbedalvaro 0:f76708a93fb3 75 Timer m_dhcpFineTimer;
mbedalvaro 0:f76708a93fb3 76 Timer m_igmpTimer;
mbedalvaro 0:f76708a93fb3 77
mbedalvaro 0:f76708a93fb3 78 bool m_useDhcp;
mbedalvaro 0:f76708a93fb3 79
mbedalvaro 0:f76708a93fb3 80 netif* m_pNetIf;
mbedalvaro 0:f76708a93fb3 81
mbedalvaro 0:f76708a93fb3 82 IpAddr m_netmask;
mbedalvaro 0:f76708a93fb3 83 IpAddr m_gateway;
mbedalvaro 0:f76708a93fb3 84
mbedalvaro 0:f76708a93fb3 85 const char* m_hostname;
mbedalvaro 0:f76708a93fb3 86
mbedalvaro 0:f76708a93fb3 87 };
mbedalvaro 0:f76708a93fb3 88
mbedalvaro 0:f76708a93fb3 89 #endif
mbedalvaro 0:f76708a93fb3 90