Is it possible to use non-blocking SPI drivers to setup RFID comms using the ST25R3911B and STM32L496 MCU
Hardware Setup: MCU: STM32L496ZG (Nucleo- L496ZG board) connected to ST25R3911B over SPI, tag is ISO15693 compliant
Software: Using the rfal library and the iso15693 APIs in en.STSW-ST25RFAL001 (V2.1.2)
IDE: Atollic TrueStudio V9.3.0
Is it possible to use non-blocking SPI drivers to create an RFID comms interface using the ST25r3911B and STM32L496 MCU?
So far I have successfully implemented RFID comms using blocking drivers that involve using the `spiTxRx` function in the platform.h file and calling the `st25r3911Isr()` in the ISR for the INT pin of the STM32L496.
But what happens if I have non-blocking SPI drivers that implement a state machine to handle SPI transactions and is not a single function call like `spiTxRx`? How do I modify the `platform.h` file and use the rfal in that case?
Does the ST25R3911B support RFID comms using non-blocking SPI drivers?
