Hey all,
I'm having a bit of troubles.. Probably not so much library specific, but general language problems..
I'm using Arduino 1.8.2 on both computers, same libraries installed on both as well.
The errors I get are like;
invalid conversion from 'const unsigned char*' to 'uint8_t* {aka unsigned char*}' [-fpermissive]
That's for code;
printMAC(mac, 6); Serial.println(F(""));
That is my own function, so ok.. lets just comment that out..
But then I get the same error above for;
Ethernet.begin(mac);
For the Ethernet library!!.. wtf..
Next error, when I remove "const" from the declaration above so that it passes, is;
invalid conversion from 'unsigned char*' to 'const char*' [-fpermissive]
That is for code;
else if ( strcmp( _packet, sysOutP1off ) == 0 )
So.. why does my complete code work on my home PC and my arduino setup at home, but not at all at work with the same version of the software and libraries installed?!
I've also uninstalled, removed the sketch folder with libraries and resetted everything on my work computer, then reinstalled everything with the same versions as I got at home.. Still not working!
Please help me out if you can!