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.

DSP外扩CPLD通讯问题



我开启了ZONE0,配置没有问题,但是不知道如何读写数据
比如我采用ZONE0

#define  DATA     *(volatile unsigned int *)0x00002000

读数据的命令:  Buffer = DATA;
写地址的命令:  DATA = address;

这样我就有问题了:
第一:ZONE0的区域范围是:0x00002000到0x00004000,这么宽的范围,DSP如何知道去读写哪个地址呢?
第二:因为我开了XREADY信号,那么在没有XREADY低电平时就去读数据,肯定是错误的,这由如何来判断呢?

希望高手指点下