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
../libraries/ADS1231/ADS1231.cpp:33:13: error: cannot convert 'volatile uint32_t* {aka volatile unsigned int*}' to 'volatile uint8_t* {aka volatile unsigned char*}' in assignment out = portOutputRegister(ADS1231s[this->ADS1231Index].sclPort);
ADS1231.h
#ifdef __SAM3X8E__ typedef volatile RwReg PortReg; typedef uint32_t PortMask; #elif defined(ESP8266) typedef volatile uint32_t PortReg; typedef uint32_t PortMask; #else typedef volatile uint8_t PortReg; typedef uint8_t PortMask; #endif
ADS1231.cpp
-volatile uint8_t *out; +volatile PortReg *out;
The text was updated successfully, but these errors were encountered:
Fixed with 1bd7d7c.
Sorry, something went wrong.
No branches or pull requests
Problem
Solution
ADS1231.h
ADS1231.cpp
See also
The text was updated successfully, but these errors were encountered: