/Zephyr-latest/drivers/sensor/adi/adt7420/ |
D | adt7420.h | 15 #define ADT7420_REG_TEMP_MSB 0x00 /* Temperature value MSB */ 19 #define ADT7420_REG_T_HIGH_MSB 0x04 /* Temperature HIGH setpoint MSB */ 21 #define ADT7420_REG_T_LOW_MSB 0x06 /* Temperature LOW setpoint MSB */ 23 #define ADT7420_REG_T_CRIT_MSB 0x08 /* Temperature CRIT setpoint MSB */
|
/Zephyr-latest/tests/drivers/sensor/adltc2990/src/ |
D | main.c | 163 uint8_t msb = 0b00000111, lsb = 0b11010000; in ZTEST_F() local 165 adltc2990_emul_set_reg(fixture->target, ADLTC2990_REG_INTERNAL_TEMP_MSB, &msb); in ZTEST_F() 173 msb = 0b00011101; in ZTEST_F() 176 adltc2990_emul_set_reg(fixture->target, ADLTC2990_REG_INTERNAL_TEMP_MSB, &msb); in ZTEST_F() 185 uint8_t msb = 0b00000001, lsb = 0b10010001; in ZTEST_F() local 188 adltc2990_emul_set_reg(fixture->target, ADLTC2990_REG_V3_MSB, &msb); in ZTEST_F() 216 uint8_t msb = 0b01100000, lsb = 0b00000000; in ZTEST_F() local 218 adltc2990_emul_set_reg(fixture->target, ADLTC2990_REG_V1_MSB, &msb); in ZTEST_F() 221 msb = 0b00000010; in ZTEST_F() 223 adltc2990_emul_set_reg(fixture->target, ADLTC2990_REG_VCC_MSB, &msb); in ZTEST_F() [all …]
|
/Zephyr-latest/drivers/display/ |
D | Kconfig.sdl | 56 bool "Configure bit order in monochrome formats to MSB first" 59 If selected, set the MSB to represent the first pixel.
|
D | mb_display.c | 49 msb:1; /* MSB represents the first pixel */ member 91 if (disp->msb) { in update_content() 378 disp->msb = 1U; in mb_display_init()
|
/Zephyr-latest/include/zephyr/drivers/sensor/ |
D | tmag5273.h | 26 * Magnitude measurement MSB as returned by the sensor. 31 * Angle result in deg, magnitude result in Gs and magnitude MSB between two axis.
|
/Zephyr-latest/include/zephyr/drivers/ |
D | i2s.h | 49 * Serial data is transmitted in two's complement with the MSB first. Both 51 * of the clock signal (SCK). The MSB is always sent one clock period after the 60 * SD | |MSB| |...| |LSB| x |...| x |MSB| |...| |LSB| x |...| x | 68 * Serial data is transmitted in two's complement with the MSB first. Both 79 * SD | |MSB| |...| |LSB|MSB| |...| |LSB|MSB| |...| |LSB| 87 * Serial data is transmitted in two's complement with the MSB first. Both 99 * SD | |MSB| |...| |LSB|MSB| |...| |LSB|MSB| |...| |LSB| 108 * Serial data is transmitted in two's complement with the MSB first. Both 111 * such that the MSB is always sent in the clock period following the WS 120 * SD |MSB| |...| |LSB| x |...| x |MSB| |...| |LSB| x |...| x | [all …]
|
/Zephyr-latest/drivers/sensor/renesas/isl29035/ |
D | isl29035.c | 27 uint8_t msb, lsb; in isl29035_sample_fetch() local 32 ISL29035_DATA_MSB_REG, &msb) < 0) { in isl29035_sample_fetch() 41 drv_data->data_sample = (msb << 8) + lsb; in isl29035_sample_fetch()
|
/Zephyr-latest/drivers/sensor/st/stmemsc/ |
D | stmemsc_spi.c | 25 /* write 1 byte with reg addr (msb at 1) + 1 dummy byte */ in stmemsc_spi_read() 51 * transaction #1: write 1 byte with reg addr (msb at 0) in stmemsc_spi_write()
|
/Zephyr-latest/drivers/dai/intel/ssp/ |
D | dai-params-intel-ipc3.h | 15 #define DAI_INTEL_IPC3_SSP_FMT_DSP_A 4 /**< L data MSB after FRM LRC */ 16 #define DAI_INTEL_IPC3_SSP_FMT_DSP_B 5 /**< L data MSB during FRM LRC */ 39 * representing when the IPC is sent. The 4 MSB bits are used to add quirks along with the above
|
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/ |
D | thread_flags.c | 62 "Thread with MSB set is set unexpectedly"); in thread2() 65 "Thread with MSB set is cleared unexpectedly"); in thread2() 67 /* cannot wait for Flag mask with MSB set */ in thread2()
|
D | event_flags.c | 154 "Event with MSB set is set unexpectedly"); in test_event_flags_signalled() 160 "Event with MSB set is cleared unexpectedly"); in test_event_flags_signalled() 162 /* cannot wait for Flag mask with MSB set */ in test_event_flags_signalled()
|
/Zephyr-latest/tests/drivers/uart/uart_mix_fifo_poll/ |
D | README.txt | 13 following: 4 MSB bits contains stream ID, 4 LSB bits are incremented.
|
/Zephyr-latest/drivers/sensor/bosch/bmi08x/ |
D | bmi08x.h | 29 /* Accel X MSB data register */ 35 /* Accel Y MSB data register */ 41 /* Accel Z MSB data register */ 62 /* Sensor temperature MSB data register */ 247 /* Gyro X MSB data register */ 253 /* Gyro Y MSB data register */ 259 /* Gyro Z MSB data register */
|
/Zephyr-latest/lib/posix/options/ |
D | spinlock.c | 29 * We reserve the MSB to mark a pthread_spinlock_t as initialized (from the 61 /* Mask off the MSB to get the actual bit index */ in get_posix_spinlock()
|
D | barrier.c | 26 * We reserve the MSB to mark a pthread_barrier_t as initialized (from the 53 /* Mask off the MSB to get the actual bit index */ in get_posix_barrier()
|
D | cond.c | 24 * We reserve the MSB to mark a pthread_cond_t as initialized (from the 52 /* Mask off the MSB to get the actual bit index */ in get_posix_cond()
|
/Zephyr-latest/drivers/sensor/bosch/bme680/ |
D | bme680.h | 169 #define BME680_CONCAT_BYTES(msb, lsb) (((uint16_t)msb << 8) | (uint16_t)lsb) argument
|
/Zephyr-latest/modules/canopennode/ |
D | canopennode.h | 54 * client writes 0x65766173 ('s', 'a', 'v', 'e' from LSB to MSB) to 60 * ('l', 'o', 'a', 'd' from LSB to MSB) to object dictionary index
|
D | canopen_storage.c | 19 /* 's', 'a', 'v', 'e' from LSB to MSB */ 22 /* 'l', 'o', 'a', 'd' from LSB to MSB */
|
/Zephyr-latest/subsys/fs/zms/ |
D | zms_priv.h | 39 #define ZMS_MAGIC_NUMBER 0x42 /* murmur3a hash of "ZMS" (MSB) */
|
/Zephyr-latest/drivers/sensor/adi/adxl367/ |
D | adxl367_decoder.c | 50 /* Because full resolution is 14b and this is 8 MSB bits. */ in adxl367_temp_convert_q31() 62 /* Because full resolution is 14b and this is 12 MSB bits. */ in adxl367_temp_convert_q31() 72 /* Because full resolution is 14b and this is 12 MSB bits. */ in adxl367_temp_convert_q31() 111 /* Because full resolution is 14b and this is 8 MSB bits. */ in adxl367_accel_convert_q31() 123 /* Because full resolution is 14b and this is 12 MSB bits. */ in adxl367_accel_convert_q31() 133 /* Because full resolution is 14b and this is 12 MSB bits. */ in adxl367_accel_convert_q31()
|
/Zephyr-latest/drivers/i3c/ |
D | i3c_ccc.c | 294 /* The actual data is MSB first. So order the data. */ in i3c_ccc_do_setmwl_all() 321 /* The actual length is MSB first. So order the data. */ in i3c_ccc_do_setmwl() 352 /* The actual length is MSB first. So order the data. */ in i3c_ccc_do_getmwl() 375 /* The actual length is MSB first. So order the data. */ in i3c_ccc_do_setmrl_all() 405 /* The actual length is MSB first. So order the data. */ in i3c_ccc_do_setmrl() 449 /* The actual length is MSB first. So order the data. */ in i3c_ccc_do_getmrl() 549 /* Received data is MSB first. So order the data. */ in i3c_ccc_do_getstatus()
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/hal/RV32M1/ |
D | ecb.c | 71 * Thus, reverse the input parameters that are LSB to MSB format (le) in ecb_encrypt() 98 /* STD e function outputs in MSB thus reverse for the (le) */ in ecb_encrypt()
|
/Zephyr-latest/drivers/sensor/st/lis2dh/ |
D | Kconfig | 150 bool "Output registers not updated until MSB and LSB read"
|
/Zephyr-latest/samples/drivers/led/apa102c_bitbang/src/ |
D | main.c | 55 /* MSB goes in first */ in send_rgb()
|