User Activity

I have an STM32F446 with a HSE attached. Everything works fine (freeRTOS, CAN, I2C, ADC).Now I want to use the RTC but I cannot initialized it if I not set PeriphClkInitStruct.PLLI2SDivQ to an unspecific value. RTC_EnterInitMode() from the HAL librar...
The following code didn't worked because of a missing data barrier before writing to the backup SRAM:HAL_PWR_EnableBkUpAccess(); std::copy(buffer, buffer + num_bytes, BaseAddress + address); HAL_PWR_DisableBkUpAccess();Adding a DSB, solved the issue ...
Hello everyone,as the title says: Is it possible to use the backup register with an external battery so on power off the data persist. And also use the backup SRAM but on power off the battery should not be used here and all data will be lost.We woul...
Posted on March 03, 2016 at 15:36 Hello ST-community, I am able to setup my external SRAM and access and test (memtest) its memory regions. It works! However, I do not know if my configurations are correct. It is hard for me to und...
Posted on February 22, 2016 at 09:16 Hello, I want to get a frequency of an input signal using the stm32f4xx with the HAL library. Signal comes in PB4. I checked the working input with a simple gpio configuration. My following i...