1 # Defines basic Tcl procs for OpenOCD flash module
5 # usage: program filename
6 # optional args: verify, reset, exit and address
9 proc program_error
{description
exit} {
18 proc program
{filename args
} {
22 if {[string equal
$arg "verify"]} {
24 } elseif
{[string equal
$arg "reset"]} {
26 } elseif
{[string equal
$arg "exit"]} {
33 # make sure init is called
34 if {[catch {init
}] != 0} {
35 program_error
"** OpenOCD init failed **" 1
38 # reset target and call any init scripts
39 if {[catch {reset init
}] != 0} {
40 program_error
"** Unable to reset target **" $exit
43 # start programming phase
44 echo
"** Programming Started **"
45 set filename \{$filename\}
46 if {[info exists address
]} {
47 set flash_args
"$filename $address"
49 set flash_args
"$filename"
52 if {[catch {eval flash write_image erase
$flash_args}] == 0} {
53 echo
"** Programming Finished **"
54 if {[info exists verify
]} {
56 echo
"** Verify Started **"
57 if {[catch {eval verify_image
$flash_args}] == 0} {
58 echo
"** Verified OK **"
60 program_error
"** Verify Failed **" $exit
64 if {[info exists reset
]} {
65 # reset target if requested
67 # also disable target polling, we are shutting down anyway
70 echo
"** Resetting Target **"
74 program_error
"** Programming Failed **" $exit
83 add_help_text program
"write an image to flash, address is only required for binary images. verify, reset, exit are optional"
84 add_usage_text program
"<filename> \[address\] \[verify\] \[reset\] \[exit\]"
86 # stm32f0x uses the same flash driver as the stm32f1x
87 # this alias enables the use of either name.
92 # stm32f3x uses the same flash driver as the stm32f1x
93 # this alias enables the use of either name.
98 # stm32f4x uses the same flash driver as the stm32f2x
99 # this alias enables the use of either name.
104 # ease migration to updated flash driver
106 echo
"DEPRECATED! use 'stm32f1x $args' not 'stm32x $args'"
110 proc stm32f2xxx args
{
111 echo
"DEPRECATED! use 'stm32f2x $args' not 'stm32f2xxx $args'"