2020-07-31 06:56 AM
I'm planning to use lsm6ds33 for my project, but I don't have enough MCU pins for interrupt.
Can I use tap and double tap events without interrupt pins connected to MCU, just checking some registers few times a sec?
Solved! Go to Solution.
2020-08-07 02:38 AM
Hi @addast ,
yes, you can read the register TAP_SRC (1Ch) to check if the event you wait for has occurred or not, just like you would do with the interrupt pin available.
How often are you going to check for the event?
Niccolò
2020-08-07 02:38 AM
Hi @addast ,
yes, you can read the register TAP_SRC (1Ch) to check if the event you wait for has occurred or not, just like you would do with the interrupt pin available.
How often are you going to check for the event?
Niccolò
2020-08-07 02:55 AM
10 times per second, maybe more.
2020-08-07 04:18 AM
that should be fine, remember to check register INT_DUR2 (5Ah), for time constraints compatibility with your application.