2020-12-08 07:35 AM
Hi,
I try to find the RCC and the GPIO register for the STM32l432KBU, but cant find it in the datasheet. i dont know if i'm looking wrong but i just cant find it. I need the Registers to enable the uart.
Thanks for reading:grinning_face: !!
bye,
Solved! Go to Solution.
2020-12-08 07:42 AM
They're in the reference manual:
2020-12-08 07:42 AM
They're in the reference manual:
2020-12-08 09:00 AM
While it's always good to look it up in the RM; in software, you better rely on the CMSIS-mandated device header
RCC->APB1ENR1 |= RCC_APB1ENR1_USART2EN;
JW