I'm actually trying to write a simple python lib to redo a simple NTAG5 cockpit app
but fitting my own purpose.
I've found the phUcBal.pdf file (include in NXP NFC cockpit app zip) that describe the simple protocol between PC and CLEV6603b board
I'm using a CLEV6630b eval board that works great with NTAG5 cockpit I can sniff serial frames sent from pc and the answers from CLEV6630b board and that looks peaty straight forward
My issue is that if I send for exemple "reset states machines to idle"
01 fd 00 00 02 00 00
I need to send it 2 times to get the answer :
01 fd 00 00 00 00
that is correct
but i need to send it 2 times each time
> [01 fd 00 00 02 00 00 ]
> [01 fd 00 00 02 00 00 ]
< [01 fd 00 00 00 00 ]
> [01 fd 00 00 02 00 00 ]
> [01 fd 00 00 02 00 00 ]
< [01 fd 00 00 00 00 ]
I've seen no mentions about sending eof or equivalent caracter at end of frame and when sniffing serial exchanges with genuine NTAG5 cockpit i dont see it neither
did any one had any idea ??
thanks for reading and for any help