Dear Friends,
I am working on TMS320c6713. I haved already used EMIF port as output to interface external device.
It is working successfully and get the expected result with this below sample code ..
#define ADDRESS 0xA0000000
#define GBLCTL 0x01800000
#define CE2 0x01800010
extern int *gblctl = (int *)GBLCTL;
extern int *ce2 = (int *)CE2;
extern int *output11=(int *)ADDRESS;
main()
{
*ce2=0x22A28A22;
*output11= 0x08000000;
}
Now i want to read operation with this same EMIF port and also control the read-write opeartion with same port at a sequential execution programming time, how i do that ...
If anybody know the solution & sample code, kindly help me.
Your kind reply will be highly appreciated. ..
Thanks ..
Gopal