Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vesta
openocd
Commits
0ea76bc7
Commit
0ea76bc7
authored
Jul 12, 2011
by
Spencer Oliver
Browse files
ftd2xx: handle FT_GetLatencyTimer bug in v1.04
Signed-off-by:
Spencer Oliver
<
ntfreak@users.sourceforge.net
>
parent
b765688b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/jtag/drivers/ft2232.c
View file @
0ea76bc7
...
...
@@ -2260,8 +2260,20 @@ static int ft2232_init_ftd2xx(uint16_t vid, uint16_t pid, int more, int* try_mor
if
((
status
=
FT_GetLatencyTimer
(
ftdih
,
&
latency_timer
))
!=
FT_OK
)
{
/* ftd2xx 1.04 (linux) has a bug when calling FT_GetLatencyTimer
* so ignore errors if using this driver version */
DWORD
dw_version
;
status
=
FT_GetDriverVersion
(
ftdih
,
&
dw_version
);
LOG_ERROR
(
"unable to get latency timer: %"
PRIu32
,
status
);
return
ERROR_JTAG_INIT_FAILED
;
if
((
status
==
FT_OK
)
&&
(
dw_version
==
0x10004
))
{
LOG_ERROR
(
"ftd2xx 1.04 detected - this has known issues "
\
"with FT_GetLatencyTimer, upgrade to a newer version"
);
}
else
{
return
ERROR_JTAG_INIT_FAILED
;
}
}
else
{
...
...
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