Skip to content

Commit

Permalink
fix for L0 flash loader
Browse files Browse the repository at this point in the history
  • Loading branch information
gluedig committed May 6, 2016
1 parent 0bb22e9 commit aa54cc2
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions src/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -1537,17 +1537,18 @@ int write_loader_to_sram(stlink_t *sl, stm32_addr_t* addr, size_t* size) {
r2, output, remaining word count
*/

0x04, 0xe0,

0x04, 0x68,
0x0c, 0x60,
0x01, 0x3a,
0x04, 0x31,
0x04, 0x30,

0x00, 0x2a,
0xf8, 0xd3,
0x00, 0xbe
0x00, 0xbf, // nop /* to make loader length % 4 = 0 */
0x04, 0xe0, // b test_done /* Go to compare */
//write_word
0x04, 0x68, // ldr r4, [r0] /* Load one word from address in r0 */
0x0c, 0x60, // str r4, [r1] /* Store the word to address in r1 */
0x04, 0x30, // adds r0, #4 /* Increment r0 */
0x04, 0x31, // adds r1, #4 /* Increment r1 */
0x01, 0x3a, // subs r2, #1 /* Decrement r2 */
//test_done:
0x00, 0x2a, // cmp r2, #0 /* Compare r2 to 0 */
0xf8, 0xd8, // bhi write_word /* Loop if above 0 */
0x00, 0xbe // bkpt #0x00 /* Set breakpoint to exit */
};

static const uint8_t loader_code_stm32f4[] = {
Expand Down

0 comments on commit aa54cc2

Please sign in to comment.