flash: fix at91sam3/4 driver typos
[fw/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