KL25 driver for Tango Control System

Dependencies:   mbed

Committer:
jskl
Date:
Mon Aug 25 12:00:15 2014 +0000
Revision:
0:5d27c333afa6
Initial Release

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jskl 0:5d27c333afa6 1 /* Copyright (C) 2012 mbed.org, MIT License
jskl 0:5d27c333afa6 2 *
jskl 0:5d27c333afa6 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
jskl 0:5d27c333afa6 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
jskl 0:5d27c333afa6 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
jskl 0:5d27c333afa6 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
jskl 0:5d27c333afa6 7 * furnished to do so, subject to the following conditions:
jskl 0:5d27c333afa6 8 *
jskl 0:5d27c333afa6 9 * The above copyright notice and this permission notice shall be included in all copies or
jskl 0:5d27c333afa6 10 * substantial portions of the Software.
jskl 0:5d27c333afa6 11 *
jskl 0:5d27c333afa6 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
jskl 0:5d27c333afa6 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
jskl 0:5d27c333afa6 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
jskl 0:5d27c333afa6 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jskl 0:5d27c333afa6 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
jskl 0:5d27c333afa6 17 */
jskl 0:5d27c333afa6 18 #ifndef SOCKET_H_
jskl 0:5d27c333afa6 19 #define SOCKET_H_
jskl 0:5d27c333afa6 20
jskl 0:5d27c333afa6 21 #include "wiznet.h"
jskl 0:5d27c333afa6 22
jskl 0:5d27c333afa6 23 #define htons(x) __REV16(x)
jskl 0:5d27c333afa6 24 #define ntohs(x) __REV16(x)
jskl 0:5d27c333afa6 25 #define htonl(x) __REV(x)
jskl 0:5d27c333afa6 26 #define ntohl(x) __REV(x)
jskl 0:5d27c333afa6 27
jskl 0:5d27c333afa6 28 /** Socket file descriptor and select wrapper
jskl 0:5d27c333afa6 29 */
jskl 0:5d27c333afa6 30 class Socket {
jskl 0:5d27c333afa6 31 public:
jskl 0:5d27c333afa6 32 /** Socket
jskl 0:5d27c333afa6 33 */
jskl 0:5d27c333afa6 34 Socket();
jskl 0:5d27c333afa6 35
jskl 0:5d27c333afa6 36 /** Set blocking or non-blocking mode of the socket and a timeout on
jskl 0:5d27c333afa6 37 blocking socket operations
jskl 0:5d27c333afa6 38 \param blocking true for blocking mode, false for non-blocking mode.
jskl 0:5d27c333afa6 39 \param timeout timeout in ms [Default: (1500)ms].
jskl 0:5d27c333afa6 40 */
jskl 0:5d27c333afa6 41 void set_blocking(bool blocking, unsigned int timeout=1500);
jskl 0:5d27c333afa6 42
jskl 0:5d27c333afa6 43 /** Close the socket file descriptor
jskl 0:5d27c333afa6 44 */
jskl 0:5d27c333afa6 45 int close();
jskl 0:5d27c333afa6 46
jskl 0:5d27c333afa6 47 ~Socket();
jskl 0:5d27c333afa6 48
jskl 0:5d27c333afa6 49 protected:
jskl 0:5d27c333afa6 50 int _sock_fd;
jskl 0:5d27c333afa6 51 bool _blocking;
jskl 0:5d27c333afa6 52 int _timeout;
jskl 0:5d27c333afa6 53
jskl 0:5d27c333afa6 54 WIZnet_Chip* eth;
jskl 0:5d27c333afa6 55 };
jskl 0:5d27c333afa6 56
jskl 0:5d27c333afa6 57
jskl 0:5d27c333afa6 58 #endif /* SOCKET_H_ */
jskl 0:5d27c333afa6 59