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
POWER_UP_STATUS is defined as follows: #define POWER_UP_STATUS(X) X & 0x40
According to table 5-1 at [http://www.rjhcoding.com/avrc-sd-interface-2.php], the card power on status bit is bit 31, so the correct line should read
#define POWER_UP_STATUS(X) X & 0x80
(the web page has the same incorrect define)
[https://github.com/ryanj1234/SD_TUTORIAL_PART2/blob/5f5739ecfc300d0984c30bc55e199324a186efd0/main.c#L36]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
POWER_UP_STATUS is defined as follows:
#define POWER_UP_STATUS(X) X & 0x40
According to table 5-1 at [http://www.rjhcoding.com/avrc-sd-interface-2.php], the card power on status bit is bit 31, so the correct line should read
#define POWER_UP_STATUS(X) X & 0x80
(the web page has the same incorrect define)
[https://github.com/ryanj1234/SD_TUTORIAL_PART2/blob/5f5739ecfc300d0984c30bc55e199324a186efd0/main.c#L36]
The text was updated successfully, but these errors were encountered: