lsm6dsr driver fix?
Hello,
One of my previous post the driver for the sensor lsm6dsox hub mode 2 configuration, I have written that the function lsm6dsox_sh_read_data_raw_get was not working correctly. I managed to fix it.Now I see someone fixit

Now I'm using lsm6dsr and the same function lsm6dsr_sh_read_data_raw_get needs to add the length.
And also this needs to be changed
typedef enum {
LSM6DSR_EXT_ON_INT2_PIN = 0,
LSM6DSR_XL_GY_DRDY = 1,
} lsm6dsr_start_config_t;
to
typedef enum {
LSM6DSR_XL_GY_DRDY = 0,
LSM6DSR_EXT_ON_INT2_PIN = 1,
} lsm6dsr_start_config_t;
Please can someone check and confirm.
