We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I try to compile a sketch using i nthe Arduino IDE using the SAMD architecture (Arduino Zero), I get the following error:
`C:\Users\quino\Documents\Arduino\libraries\WiFiEsp\src/utility/RingBuffer.h:23:7: error: redefinition of 'class RingBuffer'``
Removing the lines 30,31 & 32 solves the compilation errors: `//#include "utility/EspDrv.h"
//#include "utility/RingBuffer.h"
//#include "utility/debug.h"`
But then I have a new issue: 'WL_IDLE_STATUS' was not declared in this scope
'WL_IDLE_STATUS' was not declared in this scope
The text was updated successfully, but these errors were encountered:
My fix for Arduino M0:
#if defined(__SAMD21G18A__) #define vsnprintf_P vsnprintf #endif
Sorry, something went wrong.
This Bug is also been adressed by Pull Request #27 @bportaluri Would you be so kind to merge that Pullrequest? That would be really nice.
Fixed vsnprintf_P not declarated error
a1b2db5
As stated at: bportaluri#26 (comment)
No branches or pull requests
If I try to compile a sketch using i nthe Arduino IDE using the SAMD architecture (Arduino Zero), I get the following error:
`C:\Users\quino\Documents\Arduino\libraries\WiFiEsp\src/utility/RingBuffer.h:23:7: error: redefinition of 'class RingBuffer'``
Removing the lines 30,31 & 32 solves the compilation errors:
`//#include "utility/EspDrv.h"
//#include "utility/RingBuffer.h"
//#include "utility/debug.h"`
But then I have a new issue:
'WL_IDLE_STATUS' was not declared in this scope
The text was updated successfully, but these errors were encountered: