User Activity

I am going to use RTC in my application to generate time stamps. I am currently using Nucelo - L412KB evaluation module. Do I need to connect any pins or add any components? Where can I find this information?
I am using Nucleo - L412KB I think I might have encountered a Software bug. As you can see in the screenshot, the contents of the PWR_SCR in the SW don't match with the one in the reference manual. The contents of this register are probably swapped w...
Hello everyone!I am trying to copy RAM data to FLASH. I am using STM32L412KB evaluation module. I have made a USB of my own. I am able to talk over the USB. It's a 34Kb mass storage device. I can make a .txt file and store it but, every time I connec...
Can anyone help me in understanding each part of the below function?static void FLASH_Program_DoubleWord(uint32_t Address, uint64_t Data){ /* Check the parameters */ assert_param(IS_FLASH_PROGRAM_ADDRESS(Address)); /* What's this? */ /* Set PG bit */...
Hello everyone!I am trying to write to flash without using built-in HAL functions. Initially, I want "Hello World!". The Flash is only aligned double word writable as shown in the reference manual (RM0394) standard Programming technique Section 3.3.7...