User Activity

I am writing a USB MSD bootloader for an STM32L4 processor with 2MB of Flash. The bootloader code will reside in Flash as will the application code. The application code will most likely be larger than 1MB so I’m thinking to have only a single bank. ...
I am using STM32CubeIDE, version 1.2.0. I want to convert the elf file into an srec file with a particular format. I have tried editing the command line in the Post-build steps to read:arm-none-eabi-objcopy.exe -O srec —srec-len=28 —srec-forceS3 “$(B...
This is the second time I’ve asked for help about coding a USB MSD bootloader for the STM32L4 using the STM32L4R9I-EVAL board. I gave up for a while but would really like to figure this out so I can move forward and be able to use the STM32L4. I used...
I am working on a bootloader for the STM32L4 and using the STM32L4R9I-EVAL board. Using STM32CubeMX version 5 I've generated code for a device USB MSD and have included FatFs as the file system. I've used the FatFs routine, f_mkfs() to format the dri...