Geiger counter http://geigermaps.jp/Create/Tutorials/mbed_geiger/ja

Dependencies:   mbed

Committer:
okini3939
Date:
Fri Apr 15 16:51:30 2011 +0000
Revision:
0:5b2e60110d9b

        

Who changed what in which revision?

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