My question is I need to send the Application's binary file with CRC using Teraterm/Docklight.. so in the Bootloader project, I need to receive the Hex file of the application and verify the CRC of it, if it matches then it should be written to flash...
I'm doing an Open bootloader project for STM32L4R5ZI MCU, I don't want to use lower layer configurations for Usart, so how should I adapt the open bootloader project for my controller, what are the changes i need to do?
Yeah, I saw some openbootloader projects but they are all difficult to understand, I want simple bootloader configuration for flashing application bin file using STM32 Cube Programmer how can i do it, please help me...
Hi @KnarfB, actually my problem is I need to flash application bin file to flash memory using UART bootloader, So If I want to use STMCube programmer, what i need to configure in bootloader project for the UART configuration...if u know anything abo...
Yes, a byte at a time.. it should consist of frame format like this [SOF|DATA_LEN|DATA_WITH _CRC|EOF], I'm sending data from Terminal to MCU using UART , and receive the transmitted data and write it in to flash memory...So am not using any CRC for ...