HomeSort by relevance Sort by last modified time
    Searched full:accel (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /hardware/invensense/mlsdk/mllite/
accel.c 20 * $Id: accel.c 4595 2011-01-25 01:43:03Z mcaramello $
26 * @brief Motion Library - Accel Driver Layer.
27 * Provides the interface to setup and handle an accel
32 * @file accel.c
33 * @brief Accel setup and handling methods.
54 #define MPL_LOG_TAG "MPL-accel"
79 * @brief Used to determine if an accel is configured and
81 * @return INV_SUCCESS if the accel is present.
87 if (NULL != mldl_cfg->accel &&
88 NULL != mldl_cfg->accel->resume &
    [all...]
mldl_cfg_mpu.c 61 struct ext_slave_platform_data *accel = &mldl_cfg->pdata->accel; local
86 if (mldl_cfg->accel) {
87 MPL_LOGD("slave_accel->suspend = %02x\n", (int)mldl_cfg->accel->suspend);
88 MPL_LOGD("slave_accel->resume = %02x\n", (int)mldl_cfg->accel->resume);
89 MPL_LOGD("slave_accel->read = %02x\n", (int)mldl_cfg->accel->read);
90 MPL_LOGD("slave_accel->type = %02x\n", mldl_cfg->accel->type);
92 mldl_cfg->accel->read_reg);
94 mldl_cfg->accel->read_len);
95 MPL_LOGD("slave_accel->endian = %02x\n", mldl_cfg->accel->endian)
    [all...]
invensense.h 3 #include "accel.h"
mlBiasNoMotion.c 31 #include "accel.h"
160 long accel[3], temp; local
171 // We always run the accel low pass filter at the highest sample rate possible
172 result = inv_get_accel(accel);
189 inv_obj->accel_lpf[kk] += inv_q30_mult(gain, accel[kk]);
190 temp = accel[0] - inv_obj->accel_lpf[0];
203 // We have no motion according to accel
mldl_cfg.h 125 struct ext_slave_descr *accel; member in struct:mldl_cfg
175 mldl_cfg->accel, &mldl_cfg->pdata->accel,
227 mldl_cfg->accel, &mldl_cfg->pdata->accel);
279 data, mldl_cfg->accel,
280 &mldl_cfg->pdata->accel);
accel.h 20 * $Id: accel.h 4580 2011-01-22 03:19:23Z prao $
mldmp.c 136 if (mldl_cfg->accel && mldl_cfg->accel->resume)
155 if (NULL != mldl_cfg->accel){
  /external/chromium/chrome/browser/ui/views/tab_contents/
render_view_context_menu_views.cc 67 ui::Accelerator* accel) {
72 *accel = views::Accelerator(ui::VKEY_Z, false, true, false);
77 *accel = views::Accelerator(ui::VKEY_Z, true, true, false);
81 *accel = views::Accelerator(ui::VKEY_X, false, true, false);
85 *accel = views::Accelerator(ui::VKEY_C, false, true, false);
89 *accel = views::Accelerator(ui::VKEY_V, false, true, false);
93 *accel = views::Accelerator(ui::VKEY_A, false, true, false);
  /hardware/invensense/libsensors_iio/software/simple_apps/self_test/build/android/
inv_self_test-shared 
  /hardware/invensense/libsensors_iio/software/core/mllite/
data_builder.c 49 /** Accel Bias in Chip Frame in Hardware units scaled by 2^16 */
51 /** Temperature when accel bias was stored. */
110 sensors.accel.accuracy = inv_data_builder.save.accel_accuracy;
148 /** Accel sensitivity.
151 * it works out to be the maximum accel value in g's * 2^15.
155 return sensors.accel.sensitivity;
223 /** Set Accel Sample rate in micro seconds.
224 * @param[in] sample_rate_us Set Accel Sample rate in us
235 sensors.accel.sample_rate_us = sample_rate_us;
236 sensors.accel.sample_rate_ms = sample_rate_us / 1000
    [all...]
message_layer.h 25 /** A setting of the accel bias has occured */
results_holder.c 38 long compass_correction[4]; /**< quaternion going from gyro,accel quaternion to 9 axis */
39 int acc_state; /**< Describes accel state */
40 int got_accel_bias; /**< Flag describing if accel bias is known */
56 * using only gyro and accel.
67 * Sets the quaternion adjustment from 6 axis (accel, gyro) to 9 axis quaternion.
79 * Gets the quaternion adjustment from 6 axis (accel, gyro) to 9 axis quaternion.
105 /** Gets the accel state set by inv_set_acc_state()
106 * @return accel state.
113 /** Sets the accel state. See inv_get_acc_state() to get the value.
114 * @param[in] state value to set accel state to
    [all...]
hal_outputs.c 31 // int accuracy_accel; /**< Accel Accuracy */
64 long accel[3]; local
65 inv_get_accel_set(accel, accuracy, timestamp);
66 values[0] = accel[0] * ACCEL_CONVERSION;
67 values[1] = accel[1] * ACCEL_CONVERSION;
68 values[2] = accel[2] * ACCEL_CONVERSION;
78 * accel biases while at rest.
87 long gravity[3], accel[3]; local
89 inv_get_accel_set(accel, accuracy, timestamp);
91 accel[0] -= gravity[0] >> 14;
    [all...]
data_builder.h 19 /** This is a new sample of accel data */
107 struct inv_single_sensor_t accel; member in struct:inv_sensor_cal_t
179 inv_error_t inv_build_accel(const long *accel, int status,
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DeviceMotionProviderQt.cpp 53 RefPtr<DeviceMotionData::Acceleration> accel = DeviceMotionData::Acceleration::create( local
63 m_motion = DeviceMotionData::create(accel,
64 accel, /* FIXME: Needs to provide acceleration include gravity. */
  /hardware/invensense/libsensors_iio/software/simple_apps/self_test/
inv_self_test.c 31 //#define DEBUG_PRINT /* Uncomment to print Gyro & Accel read from Driver */
78 /** Accel Bias in Chip Frame in Hardware units scaled by 2^16 */
80 /** Temperature when accel bias was stored. */
244 // Enable Accel
246 printf("Self-Test:ERR-Failed to enable accel\n");
273 "Gyro passed= %x, Accel passed= %x, Compass passed= %x\n",
279 "Gyro passed= %x, Accel passed= %x\n",
304 // Read Accel Bias
309 printf("Self-Test:Failed to read Accel bias\n");
313 printf("Self-Test:Accel bias[0..2]= [%d %d %d]\n"
    [all...]
  /hardware/invensense/libsensors_iio/
MPLSensor.cpp 53 # warning "Third party accel"
237 /* read accel FSR to calcuate accel scale later */
246 LOGE("HAL:Error opening accel FSR");
251 LOGE("HAL:Error reading accel FSR");
255 LOGV_IF(EXTRA_VERBOSE, "HAL:Accel FSR used %d", mAccelScale);
327 /* Takes external Accel Calibration Load Method */
339 LOGV_IF(PROCESS_VERBOSE, "HAL:Original accel offset, %ld, %ld, %ld\n",
343 LOGV_IF(PROCESS_VERBOSE, "HAL:Set accel offset, %ld, %ld, %ld\n",
347 /* End of Accel Calibration Load Method *
    [all...]
sensors_mpl.cpp 45 /* Vendor-defined Accel Load Calibration File Method
46 * @param[out] Accel bias, length 3. In HW units scaled by 2^16 in body frame
49 * End of Vendor-defined Accel Load Cal Method
112 /* For Vendor-defined Accel Calibration File Load
sensors.h 72 /* Accel BMA250 */
  /hardware/invensense/mlsdk/mlutils/
mputest.c 63 #include "accel.h"
111 #define DEF_N_ACCEL_SAMPLES (20) /* num of accel samples to
831 * by the MPU Self Test. Requires 3 elements to store accel X, Y,
840 * calculates the accel biases.
862 if (mputestPData->accel.get_slave_descr == NULL) {
867 if (mputestCfgPtr->accel == NULL) {
873 /* resume the accel */
883 accel data to be retrieved by MPU */
904 MPL_LOGI("Accel biases : %+13.3f %+13.3f %+13.3f (LSB)\n", x, y, z);
906 MPL_LOGI("Accel biases : %+13.3f %+13.3f %+13.3f (gee)\n"
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
Interpolator.java 108 // no accel needed
111 // accel must be negative
  /hardware/invensense/mlsdk/
Android.mk 58 $(MLLITE_DIR)/accel.c \
84 ML_SOURCES += $(MLLITE_DIR)/accel/mantis.c
  /external/dropbear/libtomcrypt/src/modes/ecb/
ecb_decrypt.c 41 /* check for accel */
ecb_encrypt.c 41 /* check for accel */
  /external/chromium/chrome/browser/chromeos/login/
wizard_controller.cc 121 bool AcceleratorPressed(const views::Accelerator& accel) {
126 if (accel == accel_toggle_accessibility_) {
128 } else if (accel == accel_cancel_update_) {
131 } else if (accel == accel_account_screen_) {
133 } else if (accel == accel_login_screen_) {
135 } else if (accel == accel_network_screen_) {
137 } else if (accel == accel_update_screen_) {
139 } else if (accel == accel_image_screen_) {
141 } else if (accel == accel_eula_screen_) {
143 } else if (accel == accel_register_screen_)
    [all...]

Completed in 1097 milliseconds

1 2 3 4 5 6