Hi,
When RFCR3_FNUM is >0, the transmission of multiple frames is enabled. In this case, the same frame is transmitted multiple times. It is not possible to change the content of the frame between two transmissions.
In order to send several frames with a different content each time, the following sequence can be implemented:
- Fill the RF buffer with the first content
- Trigger the transmission of a single frame (RFCR3_FNUM = 0)
- Wait for the end of the transmission
- Fill the RF buffer with the second content
- Trigger the transmission of a single frame (RFCR3_FNUM = 0)
- Wait for the end of the transmission
- …
To monitor the end of the transmission, bits RFCR7_RFIF and RFCR7_RFEF can be polled if an interrupt-based method is not possible.
After the transmission has been triggered, bit RFIF will be set at the end of the transmission, if successful. If not successful, bit RFEF will be set.

After a transmission has completed, do not forget to clear RFIF/RFEF bit by setting RFIAK bit.
BR, Tomas