Red Light Work

Fork of realtimeMMLib by Graham Nicholson

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Coms.h Source File

Coms.h

00001 class Coms {
00002     public:
00003      int EthernetInitialise(char* IPAddress, char* NetworkMask, char* DefaultGateway);
00004      char* getMACAddress();
00005      int EthernetConnect();
00006      void EthernetDisconnect();
00007      int EthernetSocketConnect(char* IPAddress, int Port);
00008      int EthernetSocketSendAll(char* datasample, int samplesize);
00009      int EthernetSocketReceive(char* datasample, int samplesize);
00010      int EthernetSocketClose();
00011 };