/device/google/contexthub/firmware/os/inc/ |
timer.h | 43 uint32_t timTimerSet(uint64_t length, uint32_t jitterPpm, uint32_t driftPpm, TimTimerCbkF cbk, void* data, bool oneShot); /* return timer id or 0 if failed */
|
/device/google/contexthub/firmware/os/drivers/bosch_bmp280/ |
bosch_bmp280.c | 366 mTask.baroTimerHandle = timTimerSet(sensorTimerLookupCommon(baroSupportedRates, rateTimerValsBaro, rate), 0, 50, baroTimerCallback, NULL, false); 385 mTask.baroTimerHandle = timTimerSet(100000000ull, 0, 50, baroTimerCallback, NULL, false); 457 mTask.tempTimerHandle = timTimerSet(sensorTimerLookupCommon(tempSupportedRates, rateTimerValsTemp, rate), 0, 50, tempTimerCallback, NULL, false); 572 mTask.resetHandle = timTimerSet(2000000ull, 0, 50, softresetCallback, NULL, true);
|
/device/google/contexthub/firmware/os/drivers/si_si7034/ |
si7034a10.c | 291 mTask.humiTimerHandle = timTimerSet(sensorTimerLookupCommon(si7034Rates, 332 mTask.tempTimerHandle = timTimerSet(sensorTimerLookupCommon(si7034Rates,
|
/device/google/contexthub/firmware/os/core/ |
timer.c | 211 uint32_t timTimerSet(uint64_t length, uint32_t jitterPpm, uint32_t driftPpm, TimTimerCbkF cbk, void* data, bool oneShot)
|
spi.c | 122 if (!timTimerSet(state->packets[i].delay, 0, 50, spiDelayCallback, state, true)) {
|
hostIntf.c | 685 timTimerSet(SENSOR_INIT_DELAY, 0, 50, initCompleteCallback, NULL, true); [all...] |
nanohubCommand.c | [all...] |
/device/google/contexthub/firmware/os/drivers/hall/ |
hall.c | 96 mTask.debounceTimerHandle = timTimerSet(HALL_DEBOUNCE_TIMER_DELAY, 0, 50, debounceTimerCallback, (void*)pinState, true /* oneShot */);
|
/device/google/contexthub/firmware/os/drivers/hall_twopole/ |
hall_twopole.c | 100 data->debounceTimerHandle = timTimerSet(HALL_DEBOUNCE_TIMER_DELAY, 0, 50, debounceTimerCallback, (void*)currPinState, true /* oneShot */);
|
/device/google/contexthub/firmware/os/drivers/leds/ |
leds_gpio.c | 105 mTask.ledsTimerHandle = timTimerSet(sensorTimerLookupCommon(ledsRates,
|
leds_lp3943.c | 210 mTask.ledsTimerHandle = timTimerSet(sensorTimerLookupCommon(ledsRates,
|
/device/google/contexthub/firmware/os/drivers/ams_tmd2772/ |
ams_tmd2772.c | 353 mData.alsTimerHandle = timTimerSet(sensorTimerLookupCommon(supportedRates, rateTimerVals, rate), 0, 50, alsTimerCallback, NULL, false); 408 mData.proxTimerHandle = timTimerSet(sensorTimerLookupCommon(supportedRates, rateTimerVals, rate), 0, 50, proxTimerCallback, NULL, false);
|
/device/google/contexthub/firmware/os/drivers/st_lps22hb/ |
lps22hb.c | 396 mTask.baroTimerHandle = timTimerSet(sensorTimerLookupCommon(lps22hbRates, 492 mTask.tempTimerHandle = timTimerSet(sensorTimerLookupCommon(lps22hbRates,
|
/device/google/contexthub/firmware/os/drivers/intersil_isl29034/ |
isl29034.c | 264 mData.alsTimerHandle = timTimerSet(sensorTimerLookupCommon(supportedRates, rateTimerVals, rate), 0, 50, alsTimerCallback, NULL, false);
|
/device/google/contexthub/firmware/os/drivers/st_hts221/ |
hts221.c | 349 mTask.humidityTimerHandle = timTimerSet(sensorTimerLookupCommon(hts221Rates,
|
/device/google/contexthub/firmware/os/drivers/synaptics_s3708/ |
synaptics_s3708.c | 293 mTask.retryTimerHandle = timTimerSet(MAX_I2C_RETRY_DELAY, 0, 50, retryTimerCallback, NULL, true);
|
/device/google/contexthub/firmware/os/drivers/rohm_rpr0521/ |
rohm_rpr0521.c | 399 mTask.alsTimerHandle = timTimerSet(ROHM_RPR0521_ALS_TIMER_DELAY, 0, 50, alsTimerCallback, NULL, false);
|
/device/google/contexthub/firmware/os/drivers/st_lsm6dsm/ |
st_lsm6dsm.c | [all...] |
/device/google/contexthub/firmware/os/drivers/bosch_bmi160/ |
bosch_bmi160.c | [all...] |
/device/google/contexthub/firmware/os/drivers/ams_tmd4903/ |
ams_tmd4903.c | 482 mTask.alsTimerHandle = timTimerSet(AMS_TMD4903_ALS_TIMER_DELAY, 0, 50, alsTimerCallback, NULL, false); [all...] |
/device/google/contexthub/firmware/os/drivers/st_mag40/ |
st_mag40.c | 352 if (!timTimerSet(xfer->delay * 1000, 0, 50, i2cDelayCallback, xfer, true)) {
|
/device/google/contexthub/firmware/os/drivers/invensense_icm40600/ |
invensense_icm40600.c | [all...] |