HomeSort by relevance Sort by last modified time
    Searched refs:calibration (Results 1 - 25 of 42) sorted by null

1 2

  /device/google/contexthub/firmware/variant/argonkey/
argonkey.mk 43 os/algos/calibration/accelerometer/accel_cal.c \
44 os/algos/calibration/gyroscope/gyro_cal.c \
45 os/algos/calibration/gyroscope/gyro_stillness_detect.c \
46 os/algos/calibration/magnetometer/mag_cal.c \
47 os/algos/calibration/common/diversity_checker.c \
48 os/algos/calibration/over_temp/over_temp_cal.c \
  /device/google/contexthub/firmware/
argonkey_aux_variant_config.mk 58 os/algos/calibration/accelerometer/accel_cal.c \
59 os/algos/calibration/gyroscope/gyro_cal.c \
60 os/algos/calibration/gyroscope/gyro_stillness_detect.c \
61 os/algos/calibration/magnetometer/mag_cal.c \
62 os/algos/calibration/common/diversity_checker.c \
63 os/algos/calibration/over_temp/over_temp_cal.c \
lunchbox_aux_variant_config.mk 67 os/algos/calibration/accelerometer/accel_cal.c \
68 os/algos/calibration/gyroscope/gyro_cal.c \
69 os/algos/calibration/gyroscope/gyro_stillness_detect.c \
70 os/algos/calibration/magnetometer/mag_cal.c \
71 os/algos/calibration/common/diversity_checker.c \
72 os/algos/calibration/over_temp/over_temp_cal.c \
neonkey_aux_variant_config.mk 59 os/algos/calibration/accelerometer/accel_cal.c \
60 os/algos/calibration/gyroscope/gyro_cal.c \
61 os/algos/calibration/gyroscope/gyro_stillness_detect.c \
62 os/algos/calibration/magnetometer/mag_cal.c \
63 os/algos/calibration/common/diversity_checker.c \
64 os/algos/calibration/over_temp/over_temp_cal.c \
nucleo_aux_variant_config.mk 59 os/algos/calibration/accelerometer/accel_cal.c \
60 os/algos/calibration/gyroscope/gyro_cal.c \
61 os/algos/calibration/gyroscope/gyro_stillness_detect.c \
62 os/algos/calibration/magnetometer/mag_cal.c \
63 os/algos/calibration/common/diversity_checker.c \
64 os/algos/calibration/over_temp/over_temp_cal.c \
  /external/lisa/tests/lisa/
test_wlgen_rtapp.py 49 # We probably don't have permissions so use a dummy calibration.
50 self.calibration = {c: 100
68 rtapp = RTA(self.target, name='test', calibration=self.calibration)
244 def _test_custom_smoke(self, calibration):
255 rtapp = RTA(self.target, name='test', calibration=calibration)
285 """Test RTA custom workload (providing calibration)"""
286 self._test_custom_smoke(self.calibration)
289 """Test RTA custom workload (providing no calibration)"""
    [all...]
  /device/google/contexthub/firmware/os/drivers/st_lsm6dsm/
README 29 example i2c master support or calibration libraries.
51 - LSM6DSM_ACCEL_CALIB_ENABLED /* Enable accelerometer bias calibration */
52 - LSM6DSM_GYRO_CALIB_ENABLED /* Enable gyroscope bias calibration */
53 - LSM6DSM_OVERTEMP_CALIB_ENABLED /* Enable gyroscope over temperature bias calibration [Require LSM6DSM_GYRO_CALIB_ENABLED] */
54 - LSM6DSM_MAGN_CALIB_ENABLED /* Enable magnetometer offset calibration */
93 > Accel bias calibration through accel_cal lib;
94 > Gyro bias calibration through gyro_cal & gyro_stillnes_detect libs;
98 > Magnetometer calibration though mag_cal lib;
  /device/google/contexthub/firmware/variant/lunchbox/
lunchbox.mk 47 os/algos/calibration/magnetometer/mag_cal.c \
  /device/google/contexthub/firmware/variant/neonkey/
neonkey.mk 59 os/algos/calibration/magnetometer/mag_cal.c \
  /device/google/contexthub/firmware/variant/nucleo/
nucleo.mk 52 os/algos/calibration/magnetometer/mag_cal.c \
  /device/google/taimen/
device.mk 119 #IMU calibration
121 persist.config.calibration_fac=/persist/sensors/calibration/calibration.xml
  /frameworks/base/core/java/android/hardware/input/
IInputManager.aidl 54 in TouchCalibration calibration);
  /frameworks/base/services/core/java/com/android/server/input/
PersistentDataStore.java 103 public boolean setTouchCalibration(String inputDeviceDescriptor, int surfaceRotation, TouchCalibration calibration) {
106 if (state.setTouchCalibration(surfaceRotation, calibration)) {
319 Slog.w(InputManagerService.TAG, "Cannot get touch calibration.", ex);
324 public boolean setTouchCalibration(int surfaceRotation, TouchCalibration calibration) {
326 if (!calibration.equals(mTouchCalibration[surfaceRotation])) {
327 mTouchCalibration[surfaceRotation] = calibration;
332 Slog.w(InputManagerService.TAG, "Cannot set touch calibration.", ex);
449 } else if (parser.getName().equals("calibration")) {
456 "Missing format attribute on calibration.");
460 "Unsupported format for calibration.")
    [all...]
  /external/lisa/libs/wlgen/wlgen/
rta.py 53 calibration=None):
57 :param calibration: CPU calibration specification. Can be obtained from
64 # rt-app calibration
65 self.pload = calibration
92 :param target: Devlib target to run calibration on.
93 :returns: Dict mapping CPU numbers to RT-App calibration values.
113 log.info('CPU%d calibration...', cpu)
151 log.info('Target RT-App calibration:')
155 # Sanity check calibration values for big.LITTLE system
    [all...]
  /device/google/contexthub/firmware/os/algos/calibration/gyroscope/
gyro_cal.h 19 * calibration. The algorithm looks for periods of stillness as indicated by
43 #include "calibration/gyroscope/gyro_stillness_detect.h"
46 #include "calibration/sample_rate_estimator/sample_rate_estimator.h"
76 float calibration[3]; member in struct:DebugGyroCal
140 // Aggregated sensor stillness threshold required for gyro bias calibration.
143 // Min and max durations for gyro bias calibration.
153 // Gyro offset estimate, and the associated calibration temperature,
177 // Flag is 'true' when a new calibration update is ready.
212 // Initialize the gyro calibration data structure.
216 // Void all pointers in the gyro calibration data structure
    [all...]
gyro_cal.c 17 #include "calibration/gyroscope/gyro_cal.h"
24 #include "calibration/util/cal_log.h"
122 // Initialize the gyro calibration data structure.
162 // Set the stillness threshold required for gyro bias calibration.
186 CAL_DEBUG_LOG("[GYRO_CAL:INIT]", "Online gyroscope calibration ENABLED.");
188 CAL_DEBUG_LOG("[GYRO_CAL:INIT]", "Online gyroscope calibration DISABLED.");
198 // Void pointer in the gyro calibration data structure (doesn't do anything
202 // Get the most recent bias calibration value.
213 // Set an initial bias calibration value.
245 // Returns true when a new gyro calibration is available
    [all...]
  /external/linux-kselftest/tools/testing/selftests/timers/
freq-step.c 154 static int run_test(int calibration, double freq_base, double freq_step)
180 if (calibration) {
  /external/lisa/tests/eas/
capacity_capping.py 125 calibration=cls.env.calibration())
  /external/v8/tools/
plot-timer-events 51 calibration_log=calibration.log
  /external/libxcam/tests/
test-soft-image.cpp 276 parser.parse_intrinsic_file (intrinsic_path, info.calibration.intrinsic),
280 parser.parse_extrinsic_file (extrinsic_path, info.calibration.extrinsic),
282 info.calibration.extrinsic.trans_x += TEST_CAMERA_POSITION_OFFSET_X;
528 "\t-- [stitch]: read calibration files from exported path $FISHEYE_CONFIG_PATH\n"
756 cam_info[0].calibration.extrinsic, cam_info[1].calibration.extrinsic,
757 cam_info[2].calibration.extrinsic, cam_info[3].calibration.extrinsic,
  /external/libxcam/xcore/interface/
stitcher.h 68 CalibrationInfo calibration; member in struct:XCam::CameraInfo
  /device/google/muskie/
device-common.mk 158 #IMU calibration
160 persist.config.calibration_fac=/persist/sensors/calibration/calibration.xml
  /external/lisa/libs/utils/
executor.py 567 wl_idx, calibration = self.te.calibration())
580 wl_idx, calibration = self.te.calibration())
588 wl_idx, calibration = self.te.calibration())
  /prebuilts/go/darwin-x86/src/unicode/
letter_test.go 441 // Running 'go test -calibrate' runs the calibration to find a plausible
459 fmt.Printf("warning: running calibration on %s\n", runtime.GOARCH)
491 fmt.Printf("calibration: linear cutoff = %d\n", n)
  /prebuilts/go/linux-x86/src/unicode/
letter_test.go 441 // Running 'go test -calibrate' runs the calibration to find a plausible
459 fmt.Printf("warning: running calibration on %s\n", runtime.GOARCH)
491 fmt.Printf("calibration: linear cutoff = %d\n", n)

Completed in 840 milliseconds

1 2