summaryrefslogtreecommitdiff
path: root/src/helper/startup.tcl
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-08-25 13:18:55 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-08-25 13:18:55 +0000
commit52c0037c4f0a93ec87fe6e46ef776580090db624 (patch)
treedab20ed5ef1617737e437b586655fe6bf5359df9 /src/helper/startup.tcl
parent8044656bf8f40dc5602db7d394fa34c2cc291b20 (diff)
downloadopenocd+libswd-52c0037c4f0a93ec87fe6e46ef776580090db624.tar.gz
openocd+libswd-52c0037c4f0a93ec87fe6e46ef776580090db624.tar.bz2
openocd+libswd-52c0037c4f0a93ec87fe6e46ef776580090db624.tar.xz
openocd+libswd-52c0037c4f0a93ec87fe6e46ef776580090db624.zip
STR912 uses RCLK if available
git-svn-id: svn://svn.berlios.de/openocd/trunk@967 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/startup.tcl')
-rw-r--r--src/helper/startup.tcl12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl
index e60ad976..1b5c06e2 100644
--- a/src/helper/startup.tcl
+++ b/src/helper/startup.tcl
@@ -160,4 +160,14 @@ proc ocd_gdb_restart {target_num} {
# Fix!!! we're resetting all targets here! Really we should reset only
# one target
reset halt
-} \ No newline at end of file
+}
+
+
+# If RCLK is not supported, use fallback_speed_khz
+proc jtag_rclk {fallback_speed_khz} {
+ if {[catch {jtag_khz 0}]!=0} {
+ jtag_khz $fallback_speed_khz
+ }
+}
+
+add_help_text jtag_rclk "fallback_speed_khz - set JTAG speed to RCLK or use fallback speed" \ No newline at end of file