hello:
1. I am working with hyperlink, and If I want to send the data from local BufferA to the remote BufferB by the hyperlink, what shoul I need do about the address map?
I find that the hyperlink in the mcsdk , a function : hyplnkExampleAddrMap (&dataBuffer, (void **)&bufferThroughHypLnk), it seems like that it uses as address map !
below is my idea,maybe not right:
hyplnkExampleAddrMap (&BufferA , (void **)&BufferAThroughHypLnk),
hyplnkExampleAddrMap (&BufferB , (void **)&BufferBThroughHypLnk),
then memcpy(BufferBThroughHypLnk, BufferAThroughHypLnk, sizeof(BufferAThroughHypLnk));
is it right???
2. because hyperlink has only 256MB memoryspace access, if I have 1GB data in local DDR, and I want send the 1GB data to the remote DDR, what shoud I do?
Thanks very much!