zy1000 1.49 snapshot
git-svn-id: svn://svn.berlios.de/openocd/trunk@1374 b42882b7-edfa-0310-969c-e2dbd0fdcd60__archive__
parent
3fb2c6a6dd
commit
2136238908
|
@ -303,3 +303,11 @@ add_help_text srst_deasserted "Overridable procedure run when srst deassert is d
|
||||||
proc srst_asserted {} {
|
proc srst_asserted {} {
|
||||||
puts "Sensed nSRST asserted."
|
puts "Sensed nSRST asserted."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# catch any exceptions, capture output and return output
|
||||||
|
proc capture_catch {a} {
|
||||||
|
catch {
|
||||||
|
capture {uplevel $a}
|
||||||
|
} result
|
||||||
|
return $result
|
||||||
|
}
|
||||||
|
|
|
@ -99,14 +99,6 @@ proc encode {a} {
|
||||||
return [string map {\n <br/> { } { } \t { } > > < < / /} $a]
|
return [string map {\n <br/> { } { } \t { } > > < < / /} $a]
|
||||||
}
|
}
|
||||||
|
|
||||||
# catch any exceptions, capture output and return it
|
|
||||||
proc capture_catch {a} {
|
|
||||||
catch {
|
|
||||||
capture {uplevel $a}
|
|
||||||
} result
|
|
||||||
return $result
|
|
||||||
}
|
|
||||||
|
|
||||||
proc first_flash_base {} {
|
proc first_flash_base {} {
|
||||||
set t [lindex 0 [ocd_flash_banks]]
|
set t [lindex 0 [ocd_flash_banks]]
|
||||||
return $t(base)
|
return $t(base)
|
||||||
|
|
Loading…
Reference in New Issue