cc3000 hostdriver with the mbed socket interface

Dependents:   cc3000_hello_world_demo cc3000_simple_socket_demo cc3000_ntp_demo cc3000_ping_demo ... more

Committer:
frankvnk
Date:
Sat Feb 28 16:40:39 2015 +0000
Revision:
48:192e2fde71e9
Parent:
12:1c2a856c618a
Have TCPSocketServer::accept return the real accept values as defined in http://processors.wiki.ti.com/index.php/Non_blocking_accept; Fixed cc3000::init(const char *ip, const char *mask, const char *gateway) - missing _wlan.start(0);

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Martin Kojtal 12:1c2a856c618a 1 /* Copyright (C) 2013 mbed.org, MIT License
Martin Kojtal 12:1c2a856c618a 2 *
Martin Kojtal 12:1c2a856c618a 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
Martin Kojtal 12:1c2a856c618a 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
Martin Kojtal 12:1c2a856c618a 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
Martin Kojtal 12:1c2a856c618a 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
Martin Kojtal 12:1c2a856c618a 7 * furnished to do so, subject to the following conditions:
Martin Kojtal 12:1c2a856c618a 8 *
Martin Kojtal 12:1c2a856c618a 9 * The above copyright notice and this permission notice shall be included in all copies or
Martin Kojtal 12:1c2a856c618a 10 * substantial portions of the Software.
Martin Kojtal 12:1c2a856c618a 11 *
Martin Kojtal 12:1c2a856c618a 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
Martin Kojtal 12:1c2a856c618a 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Martin Kojtal 12:1c2a856c618a 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
Martin Kojtal 12:1c2a856c618a 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Martin Kojtal 12:1c2a856c618a 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Martin Kojtal 12:1c2a856c618a 17 */
Martin Kojtal 12:1c2a856c618a 18
Martin Kojtal 12:1c2a856c618a 19 #ifndef DEF_H
Martin Kojtal 12:1c2a856c618a 20 #define DEF_H
Martin Kojtal 12:1c2a856c618a 21
Martin Kojtal 12:1c2a856c618a 22 #include "cmsis.h"
Martin Kojtal 12:1c2a856c618a 23
Martin Kojtal 12:1c2a856c618a 24 #endif