2015-01-19 11:37 AM
Hello all,
I am tasked with implementing firmware upgrade on an STM32F103 project. USB DFU is not available for this chip.After some reading, I see two approaches available:For the Bluetooth approach, I want to learn how to get USART1 into bootloader mode. Unfortunately, I do not have control of boot0 and boot1 pins. Is there a way to put the USART into bootloader mode without using the boot pin pattern?
For the SD design, I have seen several projects that could help.Thanks and regards,Owen #iap #bootloader #dfu #bluetooth2015-01-19 11:42 AM
I've covered this a couple of times, this is from 2009
[DEAD LINK /public/STe2ecommunities/mcu/Lists/cortex_mx_stm32/Flat.aspx?RootFolder=/public/STe2ecommunities/mcu/Lists/cortex_mx_stm32/STM32%20Internal%20Bootloader&FolderCTID=0x01200200770978C69A1141439FE559EB459D7580009C4E14902C3CDE46A77F0FFD06506F5B¤tviews=6538]https://my.st.com/public/STe2ecommunities/mcu/Lists/cortex_mx_stm32/Flat.aspx?RootFolder=%2Fpublic%2FSTe2ecommunities%2Fmcu%2FLists%2Fcortex_mx_stm32%2FSTM32%20Internal%20Bootloader&FolderCTID=0x01200200770978C69A1141439FE559EB459D7580009C4E14902C3CDE46A77F0FFD06506F5B¤tviews=6538 The bootloader expects 8 E 1 (Even Parity), the F1 design cannot remap the ROM at ZERO2015-01-21 09:49 AM
Thank you, that was very helpful.