/device/google/contexthub/firmware/variant/nucleo/inc/variant/ |
D | variant.h | 45 float xi = x, yi = y, zi = z; \ 46 x = xi; y = yi; z = zi; \ 51 float xi = x, yi = y, zi = z; \ 52 x = xi; y = -yi; z = -zi; \
|
/device/google/contexthub/firmware/variant/lunchbox/inc/variant/ |
D | variant.h | 52 float xi = x, yi = y, zi = z; \ 53 x = -yi; y = xi; z = zi; \ 58 float xi = x, yi = y, zi = z; \ 59 x = xi; y = -yi; z = -zi; \
|
/device/google/contexthub/firmware/variant/neonkey/inc/variant/ |
D | variant.h | 63 float xi = x, yi = y, zi = z; \ 64 x = xi; y = yi; z = zi; \ 69 float xi = x, yi = y, zi = z; \ 70 x = xi; y = -yi; z = -zi; \
|
/device/google/contexthub/firmware/os/algos/calibration/magnetometer/mag_cal/ |
D | mag_cal.c | 241 void magCalRemoveBias(struct MagCal *moc, float xi, float yi, float zi, in magCalRemoveBias() argument 245 *zo = zi - moc->z_bias; in magCalRemoveBias() 262 void magCalRemoveSoftiron(struct MagCal *moc, float xi, float yi, float zi, in magCalRemoveSoftiron() argument 264 *xo = moc->c00 * xi + moc->c01 * yi + moc->c02 * zi; in magCalRemoveSoftiron() 265 *yo = moc->c10 * xi + moc->c11 * yi + moc->c12 * zi; in magCalRemoveSoftiron() 266 *zo = moc->c20 * xi + moc->c21 * yi + moc->c22 * zi; in magCalRemoveSoftiron()
|
D | mag_cal.h | 96 void magCalRemoveBias(struct MagCal *moc, float xi, float yi, float zi, 103 void magCalRemoveSoftiron(struct MagCal *moc, float xi, float yi, float zi,
|
/device/google/contexthub/firmware/os/drivers/st_acc44/ |
D | README | 49 float xi = x, yi = y, zi = z; \ 50 x = xi; y = yi; z = zi; \
|
/device/google/contexthub/firmware/os/drivers/st_mag40/ |
D | st_mag40.c | 721 float xi, yi, zi; in parseRawData() local 743 magCalRemoveSoftiron(&mTask.moc, x, y, z, &xi, &yi, &zi); in parseRawData() 745 newMagnCalibData = magCalUpdate(&mTask.moc, TIME_NS_TO_US(mTask.timestampInt), xi, yi, zi); in parseRawData() 747 magCalRemoveBias(&mTask.moc, xi, yi, zi, &x, &y, &z); in parseRawData()
|
/device/google/contexthub/firmware/os/algos/calibration/gyroscope/ |
D | gyro_cal.h | 227 void gyroCalRemoveBias(struct GyroCal* gyro_cal, float xi, float yi, float zi,
|
D | gyro_cal.c | 235 void gyroCalRemoveBias(struct GyroCal* gyro_cal, float xi, float yi, float zi, in gyroCalRemoveBias() argument 240 *zo = zi - gyro_cal->bias_z; in gyroCalRemoveBias()
|
/device/google/contexthub/firmware/os/algos/calibration/over_temp/ |
D | over_temp_cal.c | 508 float zi, float *xo, float *yo, float *zo) { in overTempCalRemoveOffset() argument 520 *zo = zi - over_temp_cal->compensated_offset.offset[2]; in overTempCalRemoveOffset() 524 *zo = zi; in overTempCalRemoveOffset()
|
D | over_temp_cal.h | 470 float zi, float *xo, float *yo, float *zo);
|
/device/google/contexthub/firmware/os/drivers/bosch_bmi160/ |
D | bosch_bmi160.c | 2035 float xi, yi, zi; local 2036 magCalRemoveSoftiron(&mTask.moc, x, y, z, &xi, &yi, &zi); 2038 newMagBias |= magCalUpdate(&mTask.moc, sensorTime * kSensorTimerIntervalUs, xi, yi, zi); 2040 magCalRemoveBias(&mTask.moc, xi, yi, zi, &x, &y, &z);
|