TCL scripts: replace "puts" with "echo"
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
committed by
Øyvind Harboe
parent
4747af362d
commit
e7b2958229
@@ -31,24 +31,24 @@ $_TARGETNAME configure -event reset-init {
|
||||
setupTelo
|
||||
#turn up the JTAG speed
|
||||
adapter_khz 3000
|
||||
puts "JTAG speek now 3MHz"
|
||||
puts "type helpC100 to get help on C100"
|
||||
echo "JTAG speek now 3MHz"
|
||||
echo "type helpC100 to get help on C100"
|
||||
}
|
||||
|
||||
$_TARGETNAME configure -event reset-deassert-post {
|
||||
# Force target into ARM state.
|
||||
# soft_reset_halt # not implemented on ARM11
|
||||
puts "Detected SRSRT asserted on C100.CPU"
|
||||
echo "Detected SRSRT asserted on C100.CPU"
|
||||
|
||||
}
|
||||
|
||||
$_TARGETNAME configure -event reset-assert-post {
|
||||
puts "Assering reset"
|
||||
echo "Assering reset"
|
||||
#sleep 10
|
||||
}
|
||||
|
||||
proc power_restore {} { puts "Sensed power restore. No action." }
|
||||
proc srst_deasserted {} { puts "Sensed nSRST deasserted. No action." }
|
||||
proc power_restore {} { echo "Sensed power restore. No action." }
|
||||
proc srst_deasserted {} { echo "Sensed nSRST deasserted. No action." }
|
||||
|
||||
|
||||
# boots from NOR on CS0: 8 MBytes CFI flash, 16-bit bus
|
||||
|
||||
Reference in New Issue
Block a user