ST25R3911 Capacitance measurement
I have RFID reading with ST25R3911 working now with RFAL and I would like to sense if there is a RFID tag nearby before starting RFID reading.
I did not find any example code in RFAL. I looked into data sheet and tried to read the registers:
st25r3911ReadRegister(0x3C, &c);
printf("CapA %d\n\r", c);
st25r3911ReadRegister(0x3D, &c);
printf("Cap %d\n\r", c);
st25r3911ReadRegister(0x2B, &c);
printf("Volt %d\n\r", c);but I just get zeros:
CapA 0
Cap 0
Volt 176
How shall this be done?
