Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openocd_nrf52_patch
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Calisch
openocd_nrf52_patch
Commits
df95fe25
Commit
df95fe25
authored
15 years ago
by
Zachary T Welch
Browse files
Options
Downloads
Patches
Plain Diff
armv7m: use register_commands()
parent
d79176e1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/target/armv7m.c
+48
-28
48 additions, 28 deletions
src/target/armv7m.c
with
48 additions
and
28 deletions
src/target/armv7m.c
+
48
−
28
View file @
df95fe25
...
...
@@ -795,34 +795,54 @@ COMMAND_HANDLER(handle_dap_info_command)
return
dap_info_command
(
CMD_CTX
,
swjdp
,
apsel
);
}
/** Registers commands used to access DAP resources. */
static
const
struct
command_registration
armv7m_exec_command_handlers
[]
=
{
{
.
name
=
"info"
,
.
handler
=
&
handle_dap_info_command
,
.
mode
=
COMMAND_EXEC
,
.
help
=
"dap info for ap [num], "
"default currently selected AP"
,
},
{
.
name
=
"apsel"
,
.
handler
=
&
handle_dap_apsel_command
,
.
mode
=
COMMAND_EXEC
,
.
help
=
"select a different AP [num] (default 0)"
,
},
{
.
name
=
"apid"
,
.
handler
=
&
handle_dap_apid_command
,
.
mode
=
COMMAND_EXEC
,
.
help
=
"return id reg from AP [num], "
"default currently selected AP"
,
},
{
.
name
=
"baseaddr"
,
.
handler
=
&
handle_dap_baseaddr_command
,
.
mode
=
COMMAND_EXEC
,
.
help
=
"return debug base address from AP [num], "
"default currently selected AP"
,
},
{
.
name
=
"memaccess"
,
.
handler
=
&
handle_dap_memaccess_command
,
.
mode
=
COMMAND_EXEC
,
.
help
=
"set/get number of extra tck for mem-ap memory "
"bus access [0-255]"
,
},
COMMAND_REGISTRATION_DONE
};
static
const
struct
command_registration
armv7m_command_handlers
[]
=
{
{
.
name
=
"dap"
,
.
mode
=
COMMAND_ANY
,
.
help
=
"Cortex DAP command group"
,
.
chain
=
armv7m_exec_command_handlers
,
},
COMMAND_REGISTRATION_DONE
};
int
armv7m_register_commands
(
struct
command_context
*
cmd_ctx
)
{
struct
command
*
arm_adi_v5_dap_cmd
;
arm_adi_v5_dap_cmd
=
COMMAND_REGISTER
(
cmd_ctx
,
NULL
,
"dap"
,
NULL
,
COMMAND_ANY
,
"cortex dap specific commands"
);
COMMAND_REGISTER
(
cmd_ctx
,
arm_adi_v5_dap_cmd
,
"info"
,
handle_dap_info_command
,
COMMAND_EXEC
,
"Displays dap info for ap [num],"
"default currently selected AP"
);
COMMAND_REGISTER
(
cmd_ctx
,
arm_adi_v5_dap_cmd
,
"apsel"
,
handle_dap_apsel_command
,
COMMAND_EXEC
,
"Select a different AP [num] (default 0)"
);
COMMAND_REGISTER
(
cmd_ctx
,
arm_adi_v5_dap_cmd
,
"apid"
,
handle_dap_apid_command
,
COMMAND_EXEC
,
"Displays id reg from AP [num], "
"default currently selected AP"
);
COMMAND_REGISTER
(
cmd_ctx
,
arm_adi_v5_dap_cmd
,
"baseaddr"
,
handle_dap_baseaddr_command
,
COMMAND_EXEC
,
"Displays debug base address from AP [num],"
"default currently selected AP"
);
COMMAND_REGISTER
(
cmd_ctx
,
arm_adi_v5_dap_cmd
,
"memaccess"
,
handle_dap_memaccess_command
,
COMMAND_EXEC
,
"set/get number of extra tck for mem-ap "
"memory bus access [0-255]"
);
return
ERROR_OK
;
return
register_commands
(
cmd_ctx
,
NULL
,
armv7m_command_handlers
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment