Skip to content
Snippets Groups Projects
Commit 39e9278f authored by kc8apf's avatar kc8apf
Browse files

Add jtag_queue_command() by Michael Bruck <mbruck@digenius.de>

git-svn-id: svn://svn.berlios.de/openocd/trunk@1815 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 9b4295b0
Branches
No related tags found
No related merge requests found
......@@ -439,6 +439,21 @@ jtag_command_t** jtag_get_last_command_p(void)
return last_comand_pointer;
}
void jtag_queue_command(jtag_command_t * cmd)
{
jtag_command_t **last_cmd;
last_cmd = jtag_get_last_command_p();
*last_cmd = cmd;
(*last_cmd)->next = NULL;
last_comand_pointer = &((*last_cmd)->next);
}
void* cmd_queue_alloc(size_t size)
{
cmd_queue_page_t **p_page = &cmd_queue_pages;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment