Hi Diaglog teams,
Can you give me to example of i2c interrupt in DA1468x?
The following example can't use i2c interrupt.
Thanks.
Device:
Hi Diaglog teams,
Can you give me to example of i2c interrupt in DA1468x?
The following example can't use i2c interrupt.
Thanks.
Hi There,
This is the only example that we have for I2C. I would recommend first checking this example as:
- Provides a basic understanding of Adapters concept
- Explains the different APIs and configurations of I2C peripheral Adapters
- Gives a complete sample project demonstrating the usage of I2C peripheral Adapters
Generally, we strongly recommend the usage of the adapters for accessing hardware peripherals because not only provide access to the peripheral, but also make sure that other tasks which are currently accessing it, suspend their operation until the peripheral is once again released. So you don't have to worry if another task tries accessing the same peripheral at the same time. Also, in sleep mode all the peripheral blocks are powered down.
Thanks, PM_Dialog