repo.or.cz
/
openocd
/
libswd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
jtag: fix incorrect LOG_DEBUG abs_chain_position
[openocd/libswd.git]
/
src
/
flash
/
startup.tcl
blob
5f40e64912a2515bed7a43403b2c3f60dcf63be9
1
# Defines basic Tcl procs for OpenOCD flash module
2
3
# ease migration to updated flash driver
4
proc
stm32x args
{
5
echo
"DEPRECATED! use 'stm32f1x
$args
' not 'stm32x
$args
'"
6
eval
stm32f1x
$args
7
}
8
9
proc
stm32f2xxx args
{
10
echo
"DEPRECATED! use 'stm32f2x
$args
' not 'stm32f2xxx
$args
'"
11
eval
stm32f2x
$args
12
}
13