admin管理员组文章数量:1350059
I have a problem with ftdi (D2xx library).
I am using the D2xx (ftd2xx) library to control an FTDI FT2232H chip and configure it as JTAG.
To set the TCK clock, I use opcode 0x86 as follows:
// Command to set clock divisor
byOutputBuffer[dwNumBytesToSend++] = 0x86;
// Low byte of clock divisor
byOutputBuffer[dwNumBytesToSend++] = clk_div & 0xFF;
// High byte of clock divisor
byOutputBuffer[dwNumBytesToSend++] = (clk_div >> 8) & 0xFF;
// Send clock divisor commands
g_pWrite(ftHandle_, byOutputBuffer, dwNumBytesToSend, &dwNumBytesSent);
This works correctly.
Now, I need to read the configured TCK clock (divider).
I have tried the following:
// Command to set clock divisor
byOutputBuffer[dwNumBytesToSend++] = 0x86;
g_pWrite(ftHandle_, byOutputBuffer, dwNumBytesToSend, &dwNumBytesSent);
// Check the number of bytes written
printf("Number of bytes written: %d\n", dwNumBytesSent);
do {
ftStatus = g_pGetQueueStatus(ftHandle_, &dwNumBytesToRead);
} while ((dwNumBytesToRead == 0) && (ftStatus == FT_OK));
printf("ftdi_blaster::get_freq : Bytes received = %d\n", dwNumBytesToRead);
However, the number of bytes received (dwNumBytesToRead) is always 0.
How can I correctly read the configured clock divisor?
thanks.
本文标签: jtagFTDI D2xx Read TCK valueStack Overflow
版权声明:本文标题:jtag - FTDI D2xx Read TCK value - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743867702a2552886.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论