Open GoogleCodeExporter opened 9 years ago
[deleted comment]
Thanks for the report, and especially for providing a test case. Does it fail
also if you convert the hex file to a binary?
Original comment by lists.to...@gmail.com
on 24 Feb 2015 at 8:58
In stm32.c you can simply change
/* must be 32bit aligned */
- if (address & 0x3 || len & 0x3) {
to
/* must be 32bit aligned */
+ if (address & 0x3) {
because after that you anyway pad data to needed size
Original comment by smal.r...@gmail.com
on 20 May 2015 at 6:45
Original issue reported on code.google.com by
quacks...@gmail.com
on 30 Oct 2014 at 11:42Attachments: