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.

TRF7060A读取ISO15693标签问题

Other Parts Discussed in Thread: TRF7960A

   大家好,我目前用STM8+TRF7960A用SPI通讯,移植的官网程序,发现读取15693标签时,用1 slot查询tag是没有问题的,但是用 16 slot时就查询不到tag?

  另外,在读取memary数据时,发送如下数据

buf[0]=0x8f; /* ResetFIFOcommand*/
buf[1]=0x91; /* SendwithCRC*/
buf[2]=0x3d; /* Writecontinuousfrom register 1D*/
buf[3]=(char) (3 >>8); /* Datafor register 1D*/
buf[4]=(char) (3 <<4); /* Datafor register 1E*/
buf[5]=0X02; /* ISO15693 flag with optionflag notset*/
buf[6]=0x20; /* Readmultipleblockscommandcode*/

buf[7]= 0x01;


Trf796xRawWrite(&buf[0], 8); // writing to FIFO

没有返回读取的数据信息