multiplayer pong game for LPC 1768

Dependencies:   mbed MbedJSONValue mbed-rtos Adafruit_ST7735 Adafruit_GFX EthernetInterface DebouncedInterrupt

network.cpp

Committer:
vsoltan
Date:
2020-11-10
Revision:
11:d0a105f6743f
Child:
13:95d44f7855ca

File content as of revision 11:d0a105f6743f:

#include "network.h"

void initEthernet(EthernetInterface *eth, UDPSocket *sock, Endpoint *nist) {
    eth->init(); //Use DHCP
    eth->connect();
    sock->init();
    nist->set_address(AWS_IP, PORT);
}

void cleanupEthernet(EthernetInterface *eth, UDPSocket *sock) {
    sock->close(); 
    eth->disconnect(); 
}