arm-jtag-ew: Fix setting interface speed (2/2)

Interface expects speed in Hz, not kHz

- Ticket #34
This commit is contained in:
Simon Barner 2011-09-16 21:08:10 +02:00 committed by Andreas Fritiofson
parent 3977c5169b
commit 8b61ed2e95
1 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ static int armjtagew_speed(int speed)
usb_out_buffer[0] = CMD_SET_TCK_FREQUENCY;
buf_set_u32(usb_out_buffer + 1, 0, 32, speed);
buf_set_u32(usb_out_buffer + 1, 0, 32, speed*1000);
result = armjtagew_usb_message(armjtagew_handle, 5, 4);
@ -196,7 +196,7 @@ static int armjtagew_speed(int speed)
usb_out_buffer[0] = CMD_GET_TCK_FREQUENCY;
result = armjtagew_usb_message(armjtagew_handle, 1, 4);
speed_real = (int)buf_get_u32(usb_in_buffer,0,32);
speed_real = (int)buf_get_u32(usb_in_buffer,0,32) / 1000;
if (result < 0)
{
LOG_ERROR("ARM-JTAG-EW getting speed failed (%d)", result);