]> git.sur5r.net Git - openocd/blob - src/flash/startup.tcl
flash: add support for deprecated stm32 flash cmds
[openocd] / src / flash / startup.tcl
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