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