hi for all
I am using an evmdm642 and I want to achieve the transfer of data from one memory to another using video port0 and video port2 as a gateway and I write these lines of code :
Vp0 = (unsigned char *) CHIP_VP0;
Vp2 = (unsigned char *) CHIP_VP2;
DAT_copy (rama, vp0, sizeof (unsigned char));
DAT_copy (Vp0, Vp2, sizeof (unsigned char));
DAT_copy (Vp0, ramba, sizeof (unsigned char));
knowing taht CHIP_VP0 and CHIP_VP2 are defined in csl_chip.h
My question is: with this method i did really the transfer of data via videos ports or no ?
please i need your help, thank you very much.