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
Why is the type of AHBPrescTable[] and APBPrescTable[] uint32_t?
const uint32_t AHBPrescTable[16U] = {0UL, 0UL, 0UL, 0UL, 0UL, 0UL, 0UL, 0UL, 1UL, 2UL, 3UL, 4UL, 6UL, 7UL, 8UL, 9UL}; const uint32_t APBPrescTable[8U] = {0UL, 0UL, 0UL, 0UL, 1UL, 2UL, 3UL, 4UL};
All other families has got uint8_t
const uint8_t AHBPrescTable[16U] = {0U, 0U, 0U, 0U, 0U, 0U, 0U, 0U, 1U, 2U, 3U, 4U, 6U, 7U, 8U, 9U}; const uint8_t APBPrescTable[8U] = {0U, 0U, 0U, 0U, 1U, 2U, 3U, 4U};
can you explain?
The text was updated successfully, but these errors were encountered:
TOUNSTM
No branches or pull requests
Hi
Why is the type of AHBPrescTable[] and APBPrescTable[] uint32_t?
const uint32_t AHBPrescTable[16U] = {0UL, 0UL, 0UL, 0UL, 0UL, 0UL, 0UL, 0UL, 1UL, 2UL, 3UL, 4UL, 6UL, 7UL, 8UL, 9UL};
const uint32_t APBPrescTable[8U] = {0UL, 0UL, 0UL, 0UL, 1UL, 2UL, 3UL, 4UL};
All other families has got uint8_t
const uint8_t AHBPrescTable[16U] = {0U, 0U, 0U, 0U, 0U, 0U, 0U, 0U, 1U, 2U, 3U, 4U, 6U, 7U, 8U, 9U};
const uint8_t APBPrescTable[8U] = {0U, 0U, 0U, 0U, 1U, 2U, 3U, 4U};
can you explain?
The text was updated successfully, but these errors were encountered: