You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FastTransfer is called with pointer to a non empty output buffer, and an input
buffer, transfer size : 2 bytes.
Expecting a 2-byte SPI transaction, but only the start and stop condition (CS
going down and then up) appear on a logic analyzer.
Function returns MPSSE_FAIL.
Code :
uint8_t outbuf[2];
uint8_t inbuf[2];
[...]
outbuf[0] = READ_ACCESS | (address & 0x7F);
outbuf[1] = 0x00;
i = Start(mpsse);
j = FastTransfer(mpsse, (char *)outbuf, (char *)inbuf, 2);
k = Stop(mpsse);
Using libmpsse 1.3 with a FT2232H on a Linux ARM system (Pcduino).
An similar subroutine calling
j = FastWrite(mpsse, (char *)outbuf, 2);
is working properly.
Original issue reported on code.google.com by [email protected] on 24 Jul 2013 at 7:18
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 24 Jul 2013 at 7:18The text was updated successfully, but these errors were encountered: