Murata RF modules are designed to simplify wireless development and certification by minimizing the amount of RF expertise you need to wirelessly enable a wide range of applications.

Revision:
9:0ce800923eda
Parent:
1:fd19bd683e90
--- a/Config/DHCPConfig.cpp	Mon Feb 15 15:17:50 2016 +0000
+++ b/Config/DHCPConfig.cpp	Wed Mar 16 15:04:46 2016 +0000
@@ -68,25 +68,25 @@
     return *this;
 }
 
-DHCPConfig & DHCPConfig::SetLocalIP(const char * ip)
+DHCPConfig & DHCPConfig::SetLocalIP(char * ip)
 {
     this->ip = new IPAddress(ip);
     return *this;
 }
 
-DHCPConfig & DHCPConfig::SetNetmask(const char * netmask)
+DHCPConfig & DHCPConfig::SetNetmask(char * netmask)
 {
     mask = new IPAddress(netmask);
     return *this;
 }
 
-DHCPConfig & DHCPConfig::SetGatewayIP(const char * gateway)
+DHCPConfig & DHCPConfig::SetGatewayIP(char * gateway)
 {
     this->gateway = new IPAddress(gateway);
     return *this;
 }
 
-DHCPConfig & DHCPConfig::SetIPRange(const char * first, const char * last)
+DHCPConfig & DHCPConfig::SetIPRange(char * first, char * last)
 {
     this->first = new IPAddress(first);
     this->last = new IPAddress(last);