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.
1、使用SSI模块如果需要读取8字节数据完全送到FIFO中,存满后然后再读取FIFO中的数据到数组中,但此时设置数组为unsigned char型的,如果是直接读取FIFO中的数据到数组中是直接读取的低八位吗?而且需要开启FIFO中的数据存满后产生中断,然后去读取FIFO中的数据到数组中。现在的问题是如何将FIFO中的8个字节数据读取到自定义的数组中呢?
2、如果要读取SSI从设备的数据,需要使用SSIDataPut()发送空字节命令来产生时钟,是否可以这样来SSIDataPut(SSI0_BASE,0)产生接收数据时钟?
先谢谢各位了。
执行SSIDataGet(SSI0_BASE, (unsigned long)&pBuff);这条语句是否是将FIFO中的低八位数据存到pBuff数组中呢?pBuff定义为unsigned char类型的。