aboutsummaryrefslogtreecommitdiff
path: root/src/tcl/commands.tcl
blob: 7d90f36c2bf026ae0f2376285a71eaa5aa42db78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# implements Tcl procedures/functions
proc peek {address} {
	return [openocd_throw "mdw $address"]
}

# 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"
}