Home
last modified time | relevance | path

Searched refs:ptr_samples (Results 1 – 1 of 1) sorted by relevance

/device/google/contexthub/firmware/os/drivers/st_lps22hb/
Dlps22hb.c527 uint8_t *ptr_samples; in handleCommDoneEvt() local
582 ptr_samples = xfer->txrxBuf; in handleCommDoneEvt()
584 baro_val = ((ptr_samples[2] << 16) & 0xff0000) | in handleCommDoneEvt()
585 ((ptr_samples[1] << 8) & 0xff00) | (ptr_samples[0]); in handleCommDoneEvt()
602 ptr_samples = xfer->txrxBuf; in handleCommDoneEvt()
604 baro_val = ((ptr_samples[2] << 16) & 0xff0000) | in handleCommDoneEvt()
605 ((ptr_samples[1] << 8) & 0xff00) | (ptr_samples[0]); in handleCommDoneEvt()
617 ptr_samples = &xfer->txrxBuf[3]; in handleCommDoneEvt()
619 temp_val = ((ptr_samples[1] << 8) & 0xff00) | (ptr_samples[0]); in handleCommDoneEvt()