Home | History | Annotate | Download | only in mllite

Lines Matching refs:fifoRate

426     int fifoRate = inv_get_fifo_rate();
431 for (kk = (INV_MAX_NUM_ACCEL_SAMPLES - (fifoRate + 1));
1925 * The DMP will add fifo entries every fifoRate + 1 MPU cycles. For
1929 * <TR><TD>fifoRate</TD><TD>DMP Sample Rate</TD><TD>FIFO update frequency</TD></TR>
1950 * @param fifoRate Divider value - 1. Output rate is
1951 * (DMP Sample Rate) / (fifoRate + 1).
1955 inv_error_t inv_set_fifo_rate(unsigned short fifoRate)
1967 fifo_obj.fifo_rate = fifoRate;
1971 regs[0] = (unsigned char)((fifoRate >> 8) & 0xff);
1972 regs[1] = (unsigned char)(fifoRate & 0xff);
1980 (unsigned short)(((long)fifoRate + 1) *
1993 data = (1000 * inv_mpu_get_sampling_rate_hz(mldl_cfg)) / (fifoRate + 1);