aboutsummaryrefslogtreecommitdiff
path: root/src/tcl/commands.tcl
blob: a2cf0812df22e504f1af2f80d9f4a910e499ce33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Production command
# FIX!!! need to figure out how to feed back relevant output
# from e.g. "flash banks" command...
proc board_produce {filename serialnumber} {
	openocd "reset init"
	openocd "flash write_image erase $filename [flash] bin"]]
	openocd "verify_image $filename [flash] bin"]]
	echo "Successfully ran production procedure"
}

proc board_test {} {
	echo "Production test not implemented"
}