Right way to ignore received CRC in ST25R3916 with RFAL
I am expecting an answer from an ISO14443-2 Tag with no CRC set, so I want to disable that check. Currently I am doing a rfalTransceive with the following flags
( (uint32_t)RFAL_TXRX_FLAGS_CRC_TX_AUTO | (uint32_t)RFAL_TXRX_FLAGS_NFCIP1_OFF | (uint32_t)RFAL_TXRX_FLAGS_AGC_ON | (uint32_t)RFAL_TXRX_FLAGS_PAR_TX_AUTO | (uint32_t)RFAL_TXRX_FLAGS_NFCV_FLAG_AUTO \
| (uint32_t)RFAL_TXRX_FLAGS_CRC_RX_MANUAL | (uint32_t)RFAL_TXRX_FLAGS_CRC_RX_KEEP | (uint32_t)RFAL_TXRX_FLAGS_PAR_RX_REMV)
As a result I get a return value of ERR_CRC but also the expected length and data inside my provided response Memory. Is this expected behavior and I should just ignore the error code or is there a different flag I should use?
