Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
card10
openocd
Commits
3160f4a4
Commit
3160f4a4
authored
Dec 17, 2008
by
oharboe
Browse files
more houskeeping
git-svn-id:
svn://svn.berlios.de/openocd/trunk@1256
b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent
bb563397
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/jtag/zy1000.c
View file @
3160f4a4
...
...
@@ -319,6 +319,25 @@ int handle_zy1000_version_command(struct command_context_s *cmd_ctx, char *cmd,
}
static
int
zylinjtag_Jim_Command_powerstatus
(
Jim_Interp
*
interp
,
int
argc
,
Jim_Obj
*
const
*
argv
)
{
if
(
argc
!=
1
)
{
Jim_WrongNumArgs
(
interp
,
1
,
argv
,
"powerstatus"
);
return
JIM_ERR
;
}
cyg_uint32
status
;
ZY1000_PEEK
(
ZY1000_JTAG_BASE
+
0x10
,
status
);
Jim_SetResult
(
interp
,
Jim_NewIntObj
(
interp
,
(
status
&
0x80
)
!=
0
));
return
JIM_OK
;
}
int
zy1000_register_commands
(
struct
command_context_s
*
cmd_ctx
)
{
register_command
(
cmd_ctx
,
NULL
,
"power"
,
handle_power_command
,
COMMAND_ANY
,
...
...
@@ -326,11 +345,14 @@ int zy1000_register_commands(struct command_context_s *cmd_ctx)
register_command
(
cmd_ctx
,
NULL
,
"zy1000_version"
,
handle_zy1000_version_command
,
COMMAND_EXEC
,
"show zy1000 version numbers"
);
Jim_CreateCommand
(
interp
,
"powerstatus"
,
zylinjtag_Jim_Command_powerstatus
,
NULL
,
NULL
);
return
ERROR_OK
;
}
int
zy1000_init
(
void
)
{
LOG_ERROR
(
"%s
\n
"
,
ZYLIN_OPENOCD_VERSION
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment