ST25R100 Sleep mode
Hello,
I currently using the STM32F401RCT and the ST25R100-CMET.
Its a battery powered device and want to put the ST25 chip in sleep.
in rfal_nfc.c I found rfalNfcDeactivate for disabling, but I don’t get it enabled.
//Power saving functions
void NFC_Enable(void)
{
printf("Enabling NFC chip\r\n");
rfalNfcInitialize();
rfalNfcDiscover(&discParamNfc);
}
void NFC_Disable(void)
{
printf("Disabling NFC chip\r\n");
rfalNfcDeactivate(RFAL_NFC_DEACTIVATE_IDLE);
}
Right now when I enable the chip it doesn’t detect tags. It does work and detect tags without the power saving functions.
I have been reading through this file: RF/NFC abstraction layer (RFAL) - User manual But haven’t found a solution.
Have I missed anything?
Kind regards,
William

