We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
The bit set in RCC->AHB1 for crc enable is shifting (1 << 11). Needs to be shifting (1 << 12) according to CMSIS implementation.
from STM32L4x3.svd
<field> <name>CRCEN</name> <description>CRC clock enable</description> <bitOffset>11</bitOffset> <bitWidth>1</bitWidth> </field>
from CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h
#define RCC_AHB1ENR_CRCEN_Pos (12U) #define RCC_AHB1ENR_CRCEN_Msk(0x1UL << RCCAHB1ENR_CRCEN_Pos) #define RCC_AHB1ENR_CRCEN RCC_AHB1ENR_CRCEN_Msk
The text was updated successfully, but these errors were encountered:
I opened a PR on it. #517
Sorry, something went wrong.
the PR was merged, please close this issue :)
No branches or pull requests
The bit set in RCC->AHB1 for crc enable is shifting (1 << 11). Needs to be shifting (1 << 12) according to CMSIS implementation.
from STM32L4x3.svd
from CMSIS/Device/ST/STM32L4xx/Include/stm32l433xx.h
The text was updated successfully, but these errors were encountered: