lib for realtimeMM funcs

Fork of realtimeMMLib by Graham Nicholson

Committer:
GTNicholson
Date:
Thu Feb 15 16:35:50 2018 +0000
Revision:
1:13301255d95a
Parent:
0:9f82ee1feae7
v4 lib

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GTNicholson 0:9f82ee1feae7 1 class Coms {
GTNicholson 0:9f82ee1feae7 2 public:
GTNicholson 0:9f82ee1feae7 3 int EthernetInitialise(char* IPAddress, char* NetworkMask, char* DefaultGateway);
GTNicholson 0:9f82ee1feae7 4 char* getMACAddress();
GTNicholson 0:9f82ee1feae7 5 int EthernetConnect();
GTNicholson 0:9f82ee1feae7 6 void EthernetDisconnect();
GTNicholson 0:9f82ee1feae7 7 int EthernetSocketConnect(char* IPAddress, int Port);
GTNicholson 0:9f82ee1feae7 8 int EthernetSocketSendAll(char* datasample, int samplesize);
GTNicholson 0:9f82ee1feae7 9 int EthernetSocketReceive(char* datasample, int samplesize);
GTNicholson 0:9f82ee1feae7 10 int EthernetSocketClose();
GTNicholson 0:9f82ee1feae7 11 };