OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:requested_sensors
(Results
1 - 11
of
11
) sorted by null
/hardware/invensense/60xx/mlsdk/mllite/
mldmp.c
83
unsigned long
requested_sensors
;
local
135
requested_sensors
= INV_THREE_AXIS_GYRO;
137
requested_sensors
|= INV_THREE_AXIS_ACCEL;
140
requested_sensors
|= INV_THREE_AXIS_COMPASS;
143
requested_sensors
|= INV_THREE_AXIS_PRESSURE;
145
result = inv_init_requested_sensors(
requested_sensors
);
190
result = inv_dl_start(inv_get_dl_config()->
requested_sensors
);
pressure.c
90
mldl_cfg->
requested_sensors
& INV_THREE_AXIS_PRESSURE)
accel.c
89
mldl_cfg->
requested_sensors
& INV_THREE_AXIS_ACCEL)
mldl_cfg_mpu.c
261
mldl_cfg->
requested_sensors
= sensors;
277
//MPL_LOGI("%s: Resuming to %04lx\n", __func__, mldl_cfg->
requested_sensors
);
291
unsigned long requested = mldl_cfg->
requested_sensors
;
293
mldl_cfg->
requested_sensors
= (~sensors) & INV_ALL_SENSORS;
295
// mldl_cfg->
requested_sensors
);
313
mldl_cfg->
requested_sensors
= requested;
ml.c
549
if (mldl_cfg->
requested_sensors
& INV_DMP_PROCESSOR) {
[
all
...]
compass.c
223
mldl_cfg->
requested_sensors
& INV_THREE_AXIS_COMPASS)
278
!(mldl_cfg->
requested_sensors
& INV_DMP_PROCESSOR)) {
mlFIFO.c
470
if ((mldl_cfg->
requested_sensors
& INV_DMP_PROCESSOR) &&
609
if (mldl_cfg->
requested_sensors
& INV_DMP_PROCESSOR) {
[
all
...]
mldl.c
241
* @brief Sets the
requested_sensors
243
* Accessor to set the
requested_sensors
field of the mldl_cfg structure.
271
mldlCfg.
requested_sensors
= sensors;
308
mldlCfg.
requested_sensors
= sensors;
[
all
...]
mldl_cfg.h
87
unsigned long
requested_sensors
;
member in struct:mldl_cfg
/hardware/invensense/60xx/libsensors/
MPLSensor.cpp
371
bool changing_sensors = ((inv_get_dl_config()->
requested_sensors
385
if (sen_mask != inv_get_dl_config()->
requested_sensors
) {
572
if ((inv_get_dl_config()->
requested_sensors
) & INV_THREE_AXIS_GYRO) {
936
if (((inv_get_dl_config()->
requested_sensors
& INV_DMP_PROCESSOR) == 0)) {
940
if (inv_get_dl_config()->
requested_sensors
[
all
...]
/hardware/invensense/60xx/mlsdk/mlutils/
mputest.c
874
orig_requested_sensors = mputestCfgPtr->
requested_sensors
;
875
mputestCfgPtr->
requested_sensors
= INV_THREE_AXIS_ACCEL | INV_THREE_AXIS_GYRO;
878
mputestCfgPtr->
requested_sensors
);
897
mputestCfgPtr->
requested_sensors
= orig_requested_sensors;
[
all
...]
Completed in 187 milliseconds