Udp broadcast test

Dependencies:   EthernetInterface mbed-rtos mbed

main.cpp

Committer:
nkhorman
Date:
2012-09-15
Revision:
0:89513b6107d7

File content as of revision 0:89513b6107d7:

#include "mbed.h"

#include "UDPBeacon.h"

UDPBeacon gBeacon(1234);

int main()
{
    while(gBeacon.Start())
    {
        gBeacon.Poll();
    }
    
    gBeacon.Stop();
}