Move default configuration into NetworkInterface constructor. Change default values.

git-svn-id: svn+ssh://oldsvn/home/mlalondesvn/svn/cral@98 3ee9b42a-b53c-0410-a25e-f0b6218d5d5b
master
follower 17 years ago
parent 3e04fbc259
commit 4aaf08a396

@ -236,6 +236,15 @@ NetworkInterface::NetworkInterface(Wiz810MjDevice& networkDevice) : device (netw
it is needed to give the 'device' Reference a value supplied to the method
rather than having a new 'Wiz810MjDevice' instance created.
*/
// This may not be the best place to do all this, but it'll do for now:
device.setMac(0x02,0xDE,0xAD,0xBE,0xEF,0x00);
device.setIp(169,254,254,169); // A local-link IP -- NOTE: This is out of spec.
device.setMask(255,255,0,0); // Matches local-link IP /16
device.setGateway(0,0,0,0); // We can't even guess this, so just skip it.
};
// NetworkInterface Network = NetworkInterface(...); // TODO: Make this a global
@ -262,16 +271,11 @@ void setup () {
Wiz810MjDevice WIZ810MJ = Wiz810MjDevice(PIN_RESET);
Serial.println("Test W5100 configuration...");
WIZ810MJ.setMac(0x02,0xDE,0xAD,0xBE,0xEF,0x00);
// WIZ810MJ.setIp(192,168,2,105);
WIZ810MJ.setMask(255,255,255,0);
WIZ810MJ.setGateway(192,168,2,101);
NetworkInterface Network = NetworkInterface(WIZ810MJ);
Network.device.setIp(192,168,2,105);
Network.device.setMask(255,255,255,0);
Serial.println("End test W5100 configuration...");

Loading…
Cancel
Save