Skip to content
Snippets Groups Projects
Commit 1524e3c4 authored by oharboe's avatar oharboe
Browse files

switch to jtag_add_callback() - USB performance fix

git-svn-id: svn://svn.berlios.de/openocd/trunk@1725 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent a79945b7
Branches
No related tags found
No related merge requests found
......@@ -117,10 +117,9 @@ int arm720t_scan_cp15(target_t *target, u32 out, u32 *in, int instruction, int c
if (in)
{
u8 tmp[4];
fields[1].in_value = tmp;
jtag_add_dr_scan_now(2, fields, TAP_INVALID);
*in=flip_u32(le_to_h_u32(tmp), 32);
fields[1].in_value = (u8 *)in;
jtag_add_dr_scan(2, fields, TAP_INVALID);
jtag_add_callback(arm7flip32, (u8 *)in);
} else
{
jtag_add_dr_scan(2, fields, TAP_INVALID);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment