Skip to content
openocd.cfg 277 B
Newer Older
source [find interface/olimex-jtag-tiny.cfg]
source [find board/olimex_stm32_h107.cfg]
Pika's avatar
Pika committed
proc u { } {
    reset halt
    flash probe 0
    stm32f1x mass_erase 0
    flash write_bank 0 main107.bin 0
Pika's avatar
Pika committed
    reset halt
}

proc h { } {
     reset halt
}

proc r { } {
     reset run
}