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
6dc3407
removing "typedef unsigned int word;" breaks a lot of my code. The avr core Arduino.h has both:
Line 121: typedef unsigned int word;
and
Line 238: uint16_t makeWord(uint16_t w); uint16_t makeWord(byte h, byte l); #define word(...) makeWord(VA_ARGS)
if you have both you can do: word w = word(1, 2);
The text was updated successfully, but these errors were encountered:
a6c02bc
Add some missing defines
03f6656
fixes: espressif/arduino-esp32#76 fixes: espressif/arduino-esp32#5 fixes: espressif/arduino-esp32#91
Merge pull request espressif#91 from edgar-bonet/commit-fmt
83b8102
Format documentation commit in GitHub actions
0acac98
No branches or pull requests
6dc3407
removing "typedef unsigned int word;" breaks a lot of my code.
The avr core Arduino.h has both:
Line 121:
typedef unsigned int word;
and
Line 238:
uint16_t makeWord(uint16_t w);
uint16_t makeWord(byte h, byte l);
#define word(...) makeWord(VA_ARGS)
if you have both you can do:
word w = word(1, 2);
The text was updated successfully, but these errors were encountered: