This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM4372: About WLEN and FLEN of QSPI when using memory-mapped port

Part Number: AM4372

Hi everyone,

What is the value of WLEN and FLEN when QSPI communication is executed for the QSPI memory map port

by executing the following codes (A) and (B)?

(A) 
uint8_t *pSrc; /* Source address */
uint8_t *pDst; /* Destination address */

count = 3;

while(count)
{
    *pDst = *pSrc;
    pDst++;
    pSrc++;
    count--;
}


(B) 
uint32_t *pSrc; /* Source address */
uint32_t *pDst; /* Destination address */

count = 3;

while(count)
{
    *pDst = *pSrc;
    pDst++;
    pSrc++;
}

I'd like to know where the frame ends.

Best regards,

Sasaki