User Activity

I keep the important information in 32 byte. But every block have 32 byte .There are more than 300 block and every block have 32 bytes of data. So I've 32*300 byte data. How can I keep in the RAM successfully. Sould I Keep with array (uint32_t) or po...
I am looking this source codes to use Ymodem protocole,https://github.com/STMicroelectronics/STM32CubeF4/blob/master/Projects/STM324xG_EVAL/Applications/IAP/IAP_Main/inc/ymodem.hBut I've a question about that, Line 65 says to us as in below:/* /-----...
I've flash erase problem after reset.My source code routine like this:1) Boot code start at address 0x08000000 2) Than read eeprom value if eeprom value is User value3) And jump user application. ( To 0x080A0000)4) After the successfuly jumping, I ge...
I am trying to jump user application from boot code:Boot code only include below lines:  HAL_Init(); SystemClock_Config(); // Jump proccess start uint32_t reset_handler_add=*((volatile uint32_t*)(FLASH_APP_START_ADDRESS+4)); void (*ap...
I've flash protection level-1 on my stm32f429. When I open the flash protection on my mcu and connect the serial prolific to read and send data under UART. My source code couldnt run. But if I remove the serial prolific's from the pins. And reset the...