code that uses Watchdog to reset Mbed every 30seconds. After 30-60mins, the ethernet interface fails to setup() after WatchDog reset.

Dependencies:   mbed

Committer:
eqon
Date:
Thu Jun 07 05:44:29 2012 +0000
Revision:
0:0ce833f21e63

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
eqon 0:0ce833f21e63 1
eqon 0:0ce833f21e63 2 /*
eqon 0:0ce833f21e63 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
eqon 0:0ce833f21e63 4
eqon 0:0ce833f21e63 5 Permission is hereby granted, free of charge, to any person obtaining a copy
eqon 0:0ce833f21e63 6 of this software and associated documentation files (the "Software"), to deal
eqon 0:0ce833f21e63 7 in the Software without restriction, including without limitation the rights
eqon 0:0ce833f21e63 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
eqon 0:0ce833f21e63 9 copies of the Software, and to permit persons to whom the Software is
eqon 0:0ce833f21e63 10 furnished to do so, subject to the following conditions:
eqon 0:0ce833f21e63 11
eqon 0:0ce833f21e63 12 The above copyright notice and this permission notice shall be included in
eqon 0:0ce833f21e63 13 all copies or substantial portions of the Software.
eqon 0:0ce833f21e63 14
eqon 0:0ce833f21e63 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
eqon 0:0ce833f21e63 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
eqon 0:0ce833f21e63 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
eqon 0:0ce833f21e63 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
eqon 0:0ce833f21e63 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
eqon 0:0ce833f21e63 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
eqon 0:0ce833f21e63 21 THE SOFTWARE.
eqon 0:0ce833f21e63 22 */
eqon 0:0ce833f21e63 23
eqon 0:0ce833f21e63 24 #ifndef NETIF_H
eqon 0:0ce833f21e63 25 #define NETIF_H
eqon 0:0ce833f21e63 26
eqon 0:0ce833f21e63 27 #include "core/ipaddr.h"
eqon 0:0ce833f21e63 28 /*
eqon 0:0ce833f21e63 29 #include "nettcpsocket.h"
eqon 0:0ce833f21e63 30 #include "netudpsocket.h"
eqon 0:0ce833f21e63 31 #include "netdnsrequest.h"
eqon 0:0ce833f21e63 32 */
eqon 0:0ce833f21e63 33 class NetTcpSocket;
eqon 0:0ce833f21e63 34 class NetUdpSocket;
eqon 0:0ce833f21e63 35 class NetDnsRequest;
eqon 0:0ce833f21e63 36
eqon 0:0ce833f21e63 37 #if 0
eqon 0:0ce833f21e63 38 enum NetifEvent
eqon 0:0ce833f21e63 39 {
eqon 0:0ce833f21e63 40 NETIF_CONNECTED, //Connected, can create & use sockets now
eqon 0:0ce833f21e63 41 NETIF_DNSREPLY,
eqon 0:0ce833f21e63 42 NETIF_DISCONNECTED
eqon 0:0ce833f21e63 43 };
eqon 0:0ce833f21e63 44 #endif
eqon 0:0ce833f21e63 45
eqon 0:0ce833f21e63 46 class NetIf
eqon 0:0ce833f21e63 47 {
eqon 0:0ce833f21e63 48 public:
eqon 0:0ce833f21e63 49 NetIf();
eqon 0:0ce833f21e63 50 virtual ~NetIf();
eqon 0:0ce833f21e63 51 virtual NetTcpSocket* tcpSocket() = 0; //Create a new tcp socket
eqon 0:0ce833f21e63 52 virtual NetUdpSocket* udpSocket() = 0; //Create a new udp socket
eqon 0:0ce833f21e63 53 virtual void poll() = 0;
eqon 0:0ce833f21e63 54 virtual NetDnsRequest* dnsRequest(const char* hostname) = 0; //Create a new NetDnsRequest object
eqon 0:0ce833f21e63 55 virtual NetDnsRequest* dnsRequest(Host* pHost) = 0; //Create a new NetDnsRequest object
eqon 0:0ce833f21e63 56
eqon 0:0ce833f21e63 57 //!Returns the IP of the interface once it's connected
eqon 0:0ce833f21e63 58 IpAddr getIp() const;
eqon 0:0ce833f21e63 59
eqon 0:0ce833f21e63 60 protected:
eqon 0:0ce833f21e63 61 IpAddr m_ip;
eqon 0:0ce833f21e63 62 };
eqon 0:0ce833f21e63 63
eqon 0:0ce833f21e63 64 #endif