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
Hi, just want to say that with my new Arduino IDE I got some warnings about constants.
This code:
uint8_t qrcodeBytes[qrcode_getBufferSize(2)];
should create a new array. But since the qrcode_getBufferSize function is not a constant, I get some warnings.
qrcode_getBufferSize
Moving the 2 functions to the header and declaring them with defines, it works like expected:
#define bb_getGridSizeBytes(_size) ((_size * _size + 7) / 8) #define qrcode_getBufferSize(_ver) bb_getGridSizeBytes((4 * _ver + 17))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, just want to say that with my new Arduino IDE I got some warnings about constants.
This code:
should create a new array. But since the
qrcode_getBufferSize
function is not a constant, I get some warnings.Moving the 2 functions to the header and declaring them with defines, it works like expected:
The text was updated successfully, but these errors were encountered: