openocd@duaneellis.com fix naming confusion. Use ocd_ prefix for ocd API consistently.

git-svn-id: svn://svn.berlios.de/openocd/trunk@839 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2008-07-20 17:04:58 +00:00
parent 42501f0ef0
commit 6c0553c8c5
6 changed files with 24 additions and 24 deletions

View File

@ -181,7 +181,7 @@ int flash_init_drivers(struct command_context_s *cmd_ctx)
{ {
if (flash_banks) if (flash_banks)
{ {
register_jim(cmd_ctx, "openocd_flash_banks", jim_flash_banks, "return information about the flash banks"); register_jim(cmd_ctx, "ocd_flash_banks", jim_flash_banks, "return information about the flash banks");
register_command(cmd_ctx, flash_cmd, "info", handle_flash_info_command, COMMAND_EXEC, register_command(cmd_ctx, flash_cmd, "info", handle_flash_info_command, COMMAND_EXEC,
"print info about flash bank <num>"); "print info about flash bank <num>");

View File

@ -99,7 +99,7 @@ static int script_command(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
log_remove_callback(tcl_output, tclOutput); log_remove_callback(tcl_output, tclOutput);
/* We dump output into this local variable */ /* We dump output into this local variable */
Jim_SetVariableStr(interp, "openocd_output", tclOutput); Jim_SetVariableStr(interp, "ocd_output", tclOutput);
} }
for (i = 0; i < nwords; i++) for (i = 0; i < nwords; i++)
@ -623,7 +623,7 @@ command_context_t* command_init()
Jim_RegisterCoreCommands(interp); Jim_RegisterCoreCommands(interp);
#endif #endif
Jim_CreateCommand(interp, "openocd_find", jim_find, NULL, NULL); Jim_CreateCommand(interp, "ocd_find", jim_find, NULL, NULL);
Jim_CreateCommand(interp, "echo", jim_echo, NULL, NULL); Jim_CreateCommand(interp, "echo", jim_echo, NULL, NULL);
/* Set Jim's STDIO */ /* Set Jim's STDIO */

View File

@ -40,7 +40,7 @@ proc board_test {} {
proc flash_banks {} { proc flash_banks {} {
set i 0 set i 0
set result "" set result ""
foreach {a} [openocd_flash_banks] { foreach {a} [ocd_flash_banks] {
if {$i > 0} { if {$i > 0} {
set result "$result\n" set result "$result\n"
} }
@ -53,7 +53,7 @@ proc flash_banks {} {
# We need to explicitly redirect this to the OpenOCD command # We need to explicitly redirect this to the OpenOCD command
# as Tcl defines the exit proc # as Tcl defines the exit proc
proc exit {} { proc exit {} {
openocd_throw exit ocd_throw exit
} }
#Print help text for a command. Word wrap #Print help text for a command. Word wrap
@ -94,17 +94,17 @@ add_help_text help "Tcl implementation of help command"
#a bit of backwards compatibility #a bit of backwards compatibility
proc openocd_throw {cmd} { proc ocd_throw {cmd} {
set openocd_output "" set ocd_output ""
eval $cmd eval $cmd
return $openocd_output return $ocd_output
} }
#a bit of backwards compatibility #a bit of backwards compatibility
proc openocd {cmd} { proc openocd {cmd} {
set openocd_output "" set ocd_output ""
eval $cmd eval $cmd
return $openocd_output return $ocd_output
} }
# If a fn is unknown to Tcl, we try to execute it as an OpenOCD command # If a fn is unknown to Tcl, we try to execute it as an OpenOCD command
@ -137,17 +137,17 @@ proc target_script {target_num eventname scriptname} {
# Try flipping / and \ to find file if the filename does not # Try flipping / and \ to find file if the filename does not
# match the precise spelling # match the precise spelling
proc find {filename} { proc find {filename} {
if {[catch {openocd_find $filename} t]==0} { if {[catch {ocd_find $filename} t]==0} {
return $t return $t
} }
if {[catch {openocd_find [string map {\ /} $filename} t]==0} { if {[catch {ocd_find [string map {\ /} $filename} t]==0} {
return $t return $t
} }
if {[catch {openocd_find [string map {/ \\} $filename} t]==0} { if {[catch {ocd_find [string map {/ \\} $filename} t]==0} {
return $t return $t
} }
# make sure error message matches original input string # make sure error message matches original input string
return [openocd_find $filename] return [ocd_find $filename]
} }
add_help_text find "<file> - print full path to file according to OpenOCD search rules" add_help_text find "<file> - print full path to file according to OpenOCD search rules"

View File

@ -955,8 +955,8 @@ int target_register_commands(struct command_context_s *cmd_ctx)
/* script procedures */ /* script procedures */
register_jim(cmd_ctx, "openocd_mem2array", jim_mem2array, "read memory and return as a TCL array for script processing"); register_jim(cmd_ctx, "ocd_mem2array", jim_mem2array, "read memory and return as a TCL array for script processing");
register_jim(cmd_ctx, "openocd_array2mem", jim_array2mem, "convert a TCL array to memory locations and write the values"); register_jim(cmd_ctx, "ocd_array2mem", jim_array2mem, "convert a TCL array to memory locations and write the values");
return ERROR_OK; return ERROR_OK;
} }

View File

@ -54,7 +54,7 @@ proc show_AIC_IMR_helper { NAME ADDR VAL } {
proc show_AIC { } { proc show_AIC { } {
global AIC_SMR global AIC_SMR
if [catch { mem2array aaa 32 $AIC_SMR [expr 32 * 4] } msg ] { if [catch { ocd_mem2array aaa 32 $AIC_SMR [expr 32 * 4] } msg ] {
error [format "%s (%s)" $msg AIC_SMR] error [format "%s (%s)" $msg AIC_SMR]
} }
puts "AIC_SMR: Mode & Type" puts "AIC_SMR: Mode & Type"
@ -71,7 +71,7 @@ proc show_AIC { } {
incr x incr x
} }
global AIC_SVR global AIC_SVR
if [catch { mem2array aaa 32 $AIC_SVR [expr 32 * 4] } msg ] { if [catch { ocd_mem2array aaa 32 $AIC_SVR [expr 32 * 4] } msg ] {
error [format "%s (%s)" $msg AIC_SVR] error [format "%s (%s)" $msg AIC_SVR]
} }
puts "AIC_SVR: Vectors" puts "AIC_SVR: Vectors"

View File

@ -80,7 +80,7 @@ proc address_info { ADDRESS } {
proc memread32 {ADDR} { proc memread32 {ADDR} {
set foo(0) 0 set foo(0) 0
if ![ catch { mem2array foo 32 $ADDR 1 } msg ] { if ![ catch { ocd_mem2array foo 32 $ADDR 1 } msg ] {
return $foo(0) return $foo(0)
} else { } else {
error "memread32: $msg" error "memread32: $msg"
@ -89,7 +89,7 @@ proc memread32 {ADDR} {
proc memread16 {ADDR} { proc memread16 {ADDR} {
set foo(0) 0 set foo(0) 0
if ![ catch { mem2array foo 16 $ADDR 1 } msg ] { if ![ catch { ocd_mem2array foo 16 $ADDR 1 } msg ] {
return $foo(0) return $foo(0)
} else { } else {
error "memread16: $msg" error "memread16: $msg"
@ -98,7 +98,7 @@ proc memread16 {ADDR} {
proc memread8 {ADDR} { proc memread8 {ADDR} {
set foo(0) 0 set foo(0) 0
if ![ catch { mem2array foo 8 $ADDR 1 } msg ] { if ![ catch { ocd_mem2array foo 8 $ADDR 1 } msg ] {
return $foo(0) return $foo(0)
} else { } else {
error "memread8: $msg" error "memread8: $msg"
@ -107,7 +107,7 @@ proc memread8 {ADDR} {
proc memwrite32 {ADDR DATA} { proc memwrite32 {ADDR DATA} {
set foo(0) $DATA set foo(0) $DATA
if ![ catch { array2mem foo 32 $ADDR 1 } msg ] { if ![ catch { ocd_array2mem foo 32 $ADDR 1 } msg ] {
return $foo(0) return $foo(0)
} else { } else {
error "memwrite32: $msg" error "memwrite32: $msg"
@ -116,7 +116,7 @@ proc memwrite32 {ADDR DATA} {
proc memwrite16 {ADDR DATA} { proc memwrite16 {ADDR DATA} {
set foo(0) $DATA set foo(0) $DATA
if ![ catch { array2mem foo 16 $ADDR 1 } msg ] { if ![ catch { ocd_array2mem foo 16 $ADDR 1 } msg ] {
return $foo(0) return $foo(0)
} else { } else {
error "memwrite16: $msg" error "memwrite16: $msg"
@ -125,7 +125,7 @@ proc memwrite16 {ADDR DATA} {
proc memwrite8 {ADDR DATA} { proc memwrite8 {ADDR DATA} {
set foo(0) $DATA set foo(0) $DATA
if ![ catch { array2mem foo 8 $ADDR 1 } msg ] { if ![ catch { ocd_array2mem foo 8 $ADDR 1 } msg ] {
return $foo(0) return $foo(0)
} else { } else {
error "memwrite8: $msg" error "memwrite8: $msg"