2024-02-11 07:06 AM
Hi Community,
I´m trying to import this driver for my custom board,
could someone explain this more? why should NULL be written in ICREF_REG ?
Thanks in advance!
Danny
Solved! Go to Solution.
2024-02-13 06:49 AM
Hello Danny0007,
This is a specific command for this component, which sends only the device address with 1 bit (b3) defining the option for I²C RF Switch ON/OFF (no target address and no data to send).
You can refer on this topic in the DataSheet (https://www.st.com/resource/en/datasheet/st25dv04kc.pdf ) at section 5.3.1 I²C priority.
To send only the device address with write bit selected the driver uses the ICREF register (as it is Read Only) and null data to stop I²C after device address byte.
Hope this can help you.
Kind Regards.
2024-02-13 06:49 AM
Hello Danny0007,
This is a specific command for this component, which sends only the device address with 1 bit (b3) defining the option for I²C RF Switch ON/OFF (no target address and no data to send).
You can refer on this topic in the DataSheet (https://www.st.com/resource/en/datasheet/st25dv04kc.pdf ) at section 5.3.1 I²C priority.
To send only the device address with write bit selected the driver uses the ICREF register (as it is Read Only) and null data to stop I²C after device address byte.
Hope this can help you.
Kind Regards.
2024-02-13 11:28 AM