ST25R3916B CRC Error
Hi!
I'm using a x-nucleo-nfc08a1 board on a nucleo-g491re using mbed os, I'm trying to implement support for a tag which requires custom crc and parity on both tx and rx.
I'm using the following flags
RFAL_TXRX_FLAGS_CRC_TX_MANUAL | RFAL_TXRX_FLAGS_CRC_RX_KEEP | RFAL_TXRX_FLAGS_PAR_RX_KEEP | RFAL_TXRX_FLAGS_PAR_TX_NONE | RFAL_TXRX_FLAGS_CRC_RX_MANUALwith rfalStartTransceive, tx works fine but rx fails with a crc error (rfalNfcDataExchangeGetStatus() returns RFAL_ERR_CRC.
rxRcvdLen gets set to 8192 and rxBuf is filled with 0s.
I'm using a proxmark3 to debug the nfc communication and the tag responds fine as expected, but RFAL (or the transceiver itself) drops the packet.
