Skip to content
Snippets Groups Projects
Commit 923fdc6f authored by mifi's avatar mifi
Browse files

- added check for max. value of jtag_speed in ft2232_khz.

git-svn-id: svn://svn.berlios.de/openocd/trunk@690 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent bfc0ac58
Branches
No related tags found
No related merge requests found
......@@ -296,6 +296,12 @@ int ft2232_khz(int khz, int *jtag_speed)
*jtag_speed = 0;
}
/* Check max value */
if (*jtag_speed > 0xFFFF)
{
*jtag_speed = 0xFFFF;
}
return ERROR_OK;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment