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
Some of the variants are missing SDA and SCL symbols in the associated variant.h header file. These variants are missing the symbols:
The other variants handle this by creating some constants:
static const uint8_t SDA = PIN_WIRE_SDA; static const uint8_t SCL = PIN_WIRE_SCL;
Just after the PIN_WIRE_SDA and PIN_WIRE_SDA defines
The lack of these base/required symbols causes some arduino sketch/library s/w to fail to compile.
The text was updated successfully, but these errors were encountered:
Added SDA and SCL variables
cb01df8
added SDA and SCL variable in each samd variant.h this fix: arduino#473
added SDA and SCL Variables
1c00260
Added SDA and SCL variables in variant.h of samd boards This resolve: arduino#473
ccfcc89
Added SDA and SCL variables in variant.h of samd boards This resolve: #473
Rocketct
Successfully merging a pull request may close this issue.
Some of the variants are missing SDA and SCL symbols in the associated variant.h header file.
These variants are missing the symbols:
The other variants handle this by creating some constants:
Just after the PIN_WIRE_SDA and PIN_WIRE_SDA defines
The lack of these base/required symbols causes some arduino sketch/library s/w to fail to compile.
The text was updated successfully, but these errors were encountered: