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 #ifndef LWIPNETTCPSOCKET_H
okini3939 0:5b2e60110d9b 25 #define LWIPNETTCPSOCKET_H
okini3939 0:5b2e60110d9b 26
okini3939 0:5b2e60110d9b 27 #define NET_LWIP_STACK 1
okini3939 0:5b2e60110d9b 28 #include "if/net/nettcpsocket.h"
okini3939 0:5b2e60110d9b 29 #include "LwipNetIf.h"
okini3939 0:5b2e60110d9b 30
okini3939 0:5b2e60110d9b 31 #include "stdint.h"
okini3939 0:5b2e60110d9b 32
okini3939 0:5b2e60110d9b 33 //Implements NetTcpSockets over lwIP raw API
okini3939 0:5b2e60110d9b 34
okini3939 0:5b2e60110d9b 35 struct tcp_pcb; //Represents a Tcp Connection, "Protocol Control Block", see rawapi.txt & tcp.h
okini3939 0:5b2e60110d9b 36 struct pbuf; //Lwip Buffer Container
okini3939 0:5b2e60110d9b 37
okini3939 0:5b2e60110d9b 38 typedef signed char err_t;
okini3939 0:5b2e60110d9b 39 typedef uint16_t u16_t;
okini3939 0:5b2e60110d9b 40
okini3939 0:5b2e60110d9b 41 class LwipNetTcpSocket: public NetTcpSocket
okini3939 0:5b2e60110d9b 42 {
okini3939 0:5b2e60110d9b 43 public:
okini3939 0:5b2e60110d9b 44 LwipNetTcpSocket(tcp_pcb* pPcb = NULL); //Passes a pcb if already created (by an accept req for instance), in that case transfers ownership
okini3939 0:5b2e60110d9b 45 virtual ~LwipNetTcpSocket();
okini3939 0:5b2e60110d9b 46
okini3939 0:5b2e60110d9b 47 virtual NetTcpSocketErr bind(const Host& me);
okini3939 0:5b2e60110d9b 48 virtual NetTcpSocketErr listen();
okini3939 0:5b2e60110d9b 49 virtual NetTcpSocketErr connect(const Host& host);
okini3939 0:5b2e60110d9b 50 virtual NetTcpSocketErr accept(Host* pClient, NetTcpSocket** ppNewNetTcpSocket);
okini3939 0:5b2e60110d9b 51
okini3939 0:5b2e60110d9b 52 virtual int /*if < 0 : NetTcpSocketErr*/ send(const char* buf, int len);
okini3939 0:5b2e60110d9b 53 virtual int /*if < 0 : NetTcpSocketErr*/ recv(char* buf, int len);
okini3939 0:5b2e60110d9b 54
okini3939 0:5b2e60110d9b 55 virtual NetTcpSocketErr close();
okini3939 0:5b2e60110d9b 56
okini3939 0:5b2e60110d9b 57 virtual NetTcpSocketErr poll();
okini3939 0:5b2e60110d9b 58
okini3939 0:5b2e60110d9b 59 protected:
okini3939 0:5b2e60110d9b 60 volatile tcp_pcb* m_pPcb;
okini3939 0:5b2e60110d9b 61
okini3939 0:5b2e60110d9b 62 //Events callbacks from lwIp
okini3939 0:5b2e60110d9b 63 err_t acceptCb(tcp_pcb* newpcb, err_t err);
okini3939 0:5b2e60110d9b 64 err_t connectedCb(tcp_pcb* tpcb, err_t err);
okini3939 0:5b2e60110d9b 65
okini3939 0:5b2e60110d9b 66 void errCb(err_t err);
okini3939 0:5b2e60110d9b 67
okini3939 0:5b2e60110d9b 68 err_t sentCb(tcp_pcb* tpcb, u16_t len);
okini3939 0:5b2e60110d9b 69 err_t recvCb(tcp_pcb* tpcb, pbuf *p, err_t err);
okini3939 0:5b2e60110d9b 70
okini3939 0:5b2e60110d9b 71 private:
okini3939 0:5b2e60110d9b 72 void cleanUp(); //Flush input buffer
okini3939 0:5b2e60110d9b 73
okini3939 0:5b2e60110d9b 74 // queue<tcp_pcb*> m_lpInPcb; //Incoming connections that have not been accepted yet
okini3939 0:5b2e60110d9b 75 queue<LwipNetTcpSocket*> m_lpInNetTcpSocket; //Incoming connections that have not been accepted yet
okini3939 0:5b2e60110d9b 76
okini3939 0:5b2e60110d9b 77 volatile pbuf* m_pReadPbuf; //Ptr to read buffer
okini3939 0:5b2e60110d9b 78
okini3939 0:5b2e60110d9b 79 //Static callbacks : Transforms into a C++ callback
okini3939 0:5b2e60110d9b 80 static err_t sAcceptCb(void *arg, struct tcp_pcb *newpcb, err_t err);
okini3939 0:5b2e60110d9b 81 static err_t sConnectedCb(void *arg, struct tcp_pcb *tpcb, err_t err);
okini3939 0:5b2e60110d9b 82
okini3939 0:5b2e60110d9b 83 static void sErrCb(void *arg, err_t err);
okini3939 0:5b2e60110d9b 84
okini3939 0:5b2e60110d9b 85 static err_t sSentCb(void *arg, struct tcp_pcb *tpcb, u16_t len);
okini3939 0:5b2e60110d9b 86 static err_t sRecvCb(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err);
okini3939 0:5b2e60110d9b 87
okini3939 0:5b2e60110d9b 88 };
okini3939 0:5b2e60110d9b 89
okini3939 0:5b2e60110d9b 90 #endif