Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: WizFi310Interface_Legacy mbed
Prerequisite
This example shows that WIZwiki-W7500 and WizFi310 connects to AP.
To implement this function, you need a Platform board and Wi-Fi board. Below are what we used.
- WIZwiki-W7500 from WIZnet (Platform board)
- WizFi310 from WIZnet (Wi-Fi board)
Hardware Configuration
WIZwiki-W7500 Pin map

- D0 is for RXD, D1 is for TXD
- D6 is for CTS, D7 is for RTS
- D9 is for RESET
WizFi310 Pin map
- J1 is for RXD, J3 is for TXD
- SW6-1 is connected to D6 for RTS, SW6-2 is connected to D7 for CTS
- SW5-3 is connected to D9 for RESET
Software
Connect to Wi-Fi
main.cpp
if ( wizfi310.connect(SECURE, SSID, PASS)) return -1;
Caution
Input a SSID/PW to connect to an AP.
WizFi310Interface/Socket/UDPSocket.cpp
- Committer:
- kaizen
- Date:
- 2017-04-19
- Revision:
- 0:851ac97c4b05
File content as of revision 0:851ac97c4b05:
/*
* Copyright (C) 2013 gsfan, MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software
* and associated documentation files (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge, publish, distribute,
* sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or
* substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* Copyright (C) 2014 Wiznet, MIT License
* port to the Wiznet Module WizFi250
*/
/* Copyright (C) 2017 Wiznet, MIT License
* port to the Wiznet Module WizFi310
*/
#include "UDPSocket.h"
#include <string>
#include <algorithm>
UDPSocket::UDPSocket()
{
endpoint_connected = false;
}
int UDPSocket::init(void)
{
_server = false;
return 0;
}
// Server initialization
int UDPSocket::bind(int port)
{
if(port == 0)
{
_port = 5000;
_server = false;
}
else
{
_port = port;
_server = true;
}
return 0;
}
int UDPSocket::sendTo(Endpoint &remote, char *packet, int length)
{
Timer tmr;
int idx = 0;
if (_cid < 0 && _wizfi310->isAssociated())
{
if (_server)
{
_cid = _wizfi310->listen(WizFi310::PROTO_UDP, _port);
}
else
{
_cid = _wizfi310->open(WizFi310::PROTO_UDP, remote.get_address(), remote.get_port(), _port);
}
if (_cid < 0) return -1;
}
tmr.start();
while ((tmr.read_ms() < _timeout) || _blocking)
{
if(_server)
{
idx += _wizfi310->sendto(_cid, packet, length, remote.get_address(), remote.get_port());
}
else
{
idx += _wizfi310->send(_cid, packet, length);
}
if (idx < 0)
{
if (!_wizfi310->isConnected(_cid)) _cid = -1;
}
if (idx == length)
return idx;
}
return (idx == 0) ? -1 : idx;
}
int UDPSocket::receiveFrom(Endpoint &remote, char *buffer, int length)
{
Timer tmr;
int idx = 0;
int time = -1;
char ip[16];
int port;
if(_cid < 0 && _wizfi310->isAssociated())
{
// Socket open
if (_server) {
_cid = _wizfi310->listen(WizFi310::PROTO_UDP, _port);
//WIZ_DBG("TEST CID : %d",_cid);
}
else
{
_cid = _wizfi310->open(WizFi310::PROTO_UDP, remote.get_address(), remote.get_port(), _port);
}
if (_cid < 0) return -1;
}
if (_blocking)
{
tmr.start();
while (time < _timeout + 20)
{
if(_wizfi310->readable(_cid))
{
break;
}
time = tmr.read_ms();
}
if (time >= _timeout + 20)
{
return -1;
}
}
else
{
if(!_wizfi310->readable(_cid))
{
return 0;
}
}
tmr.reset();
time = -1;
tmr.start();
while (time < _timeout)
{
if(_server)
{
idx += _wizfi310->recvfrom(_cid, &buffer[idx], length - idx, ip, &port);
}
else
{
//idx += _wizfi250->recv(_cid, &buffer[idx], length - idx);
idx += _wizfi310->recvfrom(_cid, &buffer[idx], length - idx, ip, &port);
}
if (idx == length)
break;
time = tmr.read_ms();
}
remote.set_address(ip, port);
return (idx==0) ? -1 : idx;
}