2023-11-22 04:47 PM - edited 2023-11-22 05:15 PM
Hi, i need help with the integration between NUCLEO-L4T5ZI and X-NUCLEO-NFC08A1 board.
What I tried is:
Solved! Go to Solution.
2023-11-23 06:23 AM
Hi @CheeSiong
the rfal_utils.h issue has been already identified internally. A fix will be available in the next release of the X-CUBE-NFC6 package (likely in few days).
I had a look to the project file. The EXTI Line 3 interrupt has not been enabled:
This is the interrupt used by the ST25R3916B device to signal events. Make sure to enable this interrupt otherwise the system will stay stuck at initialization stage.
Also I would suggest to enable the ST25R_SELFTEST switch in your project to debug the initialization stage and to run the st25r3916Initialize step by step if you still have some issues.
Rgds
BT
2023-11-23 06:23 AM
Hi @CheeSiong
the rfal_utils.h issue has been already identified internally. A fix will be available in the next release of the X-CUBE-NFC6 package (likely in few days).
I had a look to the project file. The EXTI Line 3 interrupt has not been enabled:
This is the interrupt used by the ST25R3916B device to signal events. Make sure to enable this interrupt otherwise the system will stay stuck at initialization stage.
Also I would suggest to enable the ST25R_SELFTEST switch in your project to debug the initialization stage and to run the st25r3916Initialize step by step if you still have some issues.
Rgds
BT
2023-11-24 02:39 AM
Thanks, @Brian TIDAL , it works now!
By the way, may I ask how to enable the ST25R_SELFTEST?
2023-11-24 02:49 AM
Hi,
Well done!
Regarding your question "By the way, may I ask how to enable the ST25R_SELFTEST?": open the project properties:
and add the ST25R_SELFTEST in the Define symbols.
Rgds
BT
2023-11-24 02:50 AM
Thanks @Brian TIDAL !