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.

28335的FIFO



在用查询方式时我的是这样写的

while(SciaRegs.SCIFFRX.bit.RXFFST!=7);    //等待7个数满
        Sci_testFifo();                                     //数据存储处理

上面的是好用的,但是有个问题是对方是10ms发送一次,相应的上面那句我得等待70ms,不能干其他的事,不知道有没有像中断中的那样我设置level为7后标志位置位然后查询呢?在查询方式下RXFFIL有什么用呢?