diff --git a/GCodes.cpp b/GCodes.cpp index 852a087..b29f19c 100644 --- a/GCodes.cpp +++ b/GCodes.cpp @@ -1344,7 +1344,7 @@ void GCodes::SetMACAddress(GCodeBuffer *gb) { if(ipString[sp] == ':') { - mac[ipp] = strtol(&ipString[spp], NULL, 0); + mac[ipp] = strtol(&ipString[spp], NULL, 16); ipp++; if(ipp > 5) { @@ -1358,7 +1358,7 @@ void GCodes::SetMACAddress(GCodeBuffer *gb) }else sp++; } - mac[ipp] = strtol(&ipString[spp], NULL, 0); + mac[ipp] = strtol(&ipString[spp], NULL, 16); if(ipp == 5) { platform->SetMACAddress(mac); diff --git a/Release/README b/Release/README new file mode 100644 index 0000000..c0b1578 --- /dev/null +++ b/Release/README @@ -0,0 +1 @@ +PLEASE NOTE: the firmware binaries in this master branch are very old now. Please switch to the dev branch to find stable binaries, or to the delta branch for development ones.