aboutsummaryrefslogtreecommitdiff
path: root/src/flash/startup.tcl
blob: 5f40e64912a2515bed7a43403b2c3f60dcf63be9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Defines basic Tcl procs for OpenOCD flash module

# ease migration to updated flash driver
proc stm32x args {
	echo "DEPRECATED! use 'stm32f1x $args' not 'stm32x $args'"
	eval stm32f1x $args
}

proc stm32f2xxx args {
	echo "DEPRECATED! use 'stm32f2x $args' not 'stm32f2xxx $args'"
	eval stm32f2x $args
}