Merge branch 'master' of https://github.com/dc42/RepRapFirmware
This commit is contained in:
commit
954fe6d3b8
2 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||
|
|
1
Release/README
Normal file
1
Release/README
Normal file
|
@ -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.
|
Reference in a new issue