2021-09-05 09:54 AM
Hi,
After executing rfalNfcInitialize() the consumption of my ST25R3916 it's about 6mA. How could I do to power down the device to achieve 0mA? I've tried with these functions with no success:
rfalSetAnalogConfig(RFAL_ANALOG_CONFIG_CHIP_DEINIT);
rfalDeinitialize();
gaston
Solved! Go to Solution.
2021-09-07 06:34 AM
2021-09-07 06:34 AM
Hi Gaston,
rfalLowPowerModeStart().
Regards, Ulysses
2021-09-07 07:51 AM
Hi Ulysses,
I can see the rfalLowPowerModeStart() declaration in rfal_rf.h but I'm not able to find its implementation (rfal_rf.c ?).
I'm using rfal V2.0.10 from STM32CubeExpansion_NFC6_V1.0.0.
regards,
gaston
2021-09-08 01:15 AM
I've updated the STM32CubeExpansion_NFC6 to V1.1.0 and I've found the rfalLowPowerModeStart implementation.
Now the ST25R3916 low power mode works as expected.
Thank you!
gaston