Question
lsm6dsox interrupt
Hi,
I want to read sensor data periodically in interrupt mode.
And sensor is configured like below code.
/* Set Output Data Rate */
lsm6dsox_xl_data_rate_set(&lsm_ctx, LSM6DSOX_GY_ODR_3333Hz);
lsm6dsox_gy_data_rate_set(&lsm_ctx, LSM6DSOX_GY_ODR_3333Hz);
/* Enable interrupt generation on Inactivity INT1 pin */
lsm6dsox_pin_int1_route_get(&lsm_ctx, &int1_route);
int1_route.drdy_xl = PROPERTY_ENABLE;
lsm6dsox_pin_int1_route_set(&lsm_ctx, int1_route);
But int1 pin is measured as 1kHz or 1.6kHz

How could Int1 Pin change Low to High every 3333Hz?
