Skip to content
New issue

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

cpp warning #11

Open
Adrianotiger opened this issue Sep 2, 2019 · 0 comments
Open

cpp warning #11

Adrianotiger opened this issue Sep 2, 2019 · 0 comments

Comments

@Adrianotiger
Copy link

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.

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))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant