/Zephyr-latest/subsys/canbus/isotp/ |
D | isotp_internal.h | 14 #define ISOTP_PCI_SF 0x00 /* Single frame*/ 15 #define ISOTP_PCI_FF 0x01 /* First frame */ 16 #define ISOTP_PCI_CF 0x02 /* Consecutive frame */ 17 #define ISOTP_PCI_FC 0x03 /* Flow control frame */ 19 #define ISOTP_PCI_TYPE_BYTE 0 21 #define ISOTP_PCI_TYPE_MASK 0xF0 27 #define ISOTP_PCI_SF_DL_MASK 0x0F 29 #define ISOTP_PCI_FF_DL_UPPER_BYTE 0 30 #define ISOTP_PCI_FF_DL_UPPER_MASK 0x0F 33 #define ISOTP_PCI_FS_BYTE 0 [all …]
|
/Zephyr-latest/drivers/audio/ |
D | mpxxdtyy.c | 17 #define CHANNEL_MASK 0x55 20 0x00, 0x01, 0x00, 0x01, 0x02, 0x03, 0x02, 0x03, 21 0x00, 0x01, 0x00, 0x01, 0x02, 0x03, 0x02, 0x03, 22 0x04, 0x05, 0x04, 0x05, 0x06, 0x07, 0x06, 0x07, 23 0x04, 0x05, 0x04, 0x05, 0x06, 0x07, 0x06, 0x07, 24 0x00, 0x01, 0x00, 0x01, 0x02, 0x03, 0x02, 0x03, 25 0x00, 0x01, 0x00, 0x01, 0x02, 0x03, 0x02, 0x03, 26 0x04, 0x05, 0x04, 0x05, 0x06, 0x07, 0x06, 0x07, 27 0x04, 0x05, 0x04, 0x05, 0x06, 0x07, 0x06, 0x07, 28 0x08, 0x09, 0x08, 0x09, 0x0a, 0x0b, 0x0a, 0x0b, [all …]
|
/Zephyr-latest/drivers/ieee802154/ |
D | ieee802154_cc1200_rf.h | 32 0x6F, /* SYNC3 */ 33 0x4E, 34 0x90, 35 0x4E, 36 0xE5, 37 0x23, 38 0x47, 39 0x0B, 40 0x56, 41 0x19, /* 0x14 */ [all …]
|
D | ieee802154_rf2xx.h | 16 RF2XX_TRX_PHY_STATE_CMD_NOP = 0x00, 17 RF2XX_TRX_PHY_STATE_CMD_TX_START = 0x02, 18 RF2XX_TRX_PHY_STATE_CMD_FORCE_TRX_OFF = 0x03, 19 RF2XX_TRX_PHY_STATE_CMD_FORCE_PLL_ON = 0x04, 20 RF2XX_TRX_PHY_STATE_CMD_RX_ON = 0x06, 21 RF2XX_TRX_PHY_STATE_CMD_TRX_OFF = 0x08, 22 RF2XX_TRX_PHY_STATE_CMD_PLL_ON = 0x09, 23 RF2XX_TRX_PHY_STATE_CMD_PREP_DEEP_SLEEP = 0x10, 24 RF2XX_TRX_PHY_STATE_CMD_RX_AACK_ON = 0x16, 25 RF2XX_TRX_PHY_STATE_CMD_TX_ARET_ON = 0x19, [all …]
|
/Zephyr-latest/samples/drivers/led/led_strip/src/ |
D | main.c | 35 RGB(0x0f, 0x00, 0x00), /* red */ 36 RGB(0x00, 0x0f, 0x00), /* green */ 37 RGB(0x00, 0x00, 0x0f), /* blue */ 46 size_t color = 0; in main() 53 return 0; in main() 58 for (size_t cursor = 0; cursor < ARRAY_SIZE(pixels); cursor++) { in main() 59 memset(&pixels, 0x00, sizeof(pixels)); in main() 73 return 0; in main()
|
/Zephyr-latest/lib/crc/ |
D | crc32_sw.c | 11 return crc32_ieee_update(0x0, data, len); in crc32_ieee() 16 /* crc table generated from polynomial 0xedb88320 */ in crc32_ieee_update() 18 0x00000000U, 0x1db71064U, 0x3b6e20c8U, 0x26d930acU, in crc32_ieee_update() 19 0x76dc4190U, 0x6b6b51f4U, 0x4db26158U, 0x5005713cU, in crc32_ieee_update() 20 0xedb88320U, 0xf00f9344U, 0xd6d6a3e8U, 0xcb61b38cU, in crc32_ieee_update() 21 0x9b64c2b0U, 0x86d3d2d4U, 0xa00ae278U, 0xbdbdf21cU, in crc32_ieee_update() 26 for (size_t i = 0; i < len; i++) { in crc32_ieee_update() 29 crc = (crc >> 4) ^ table[(crc ^ byte) & 0x0f]; in crc32_ieee_update() 30 crc = (crc >> 4) ^ table[(crc ^ ((uint32_t)byte >> 4)) & 0x0f]; in crc32_ieee_update()
|
D | crc32c_sw.c | 9 /* crc table generated from polynomial 0x1EDC6F41UL (Castagnoli) */ 11 0x00000000UL, 0x105EC76FUL, 0x20BD8EDEUL, 0x30E349B1UL, 12 0x417B1DBCUL, 0x5125DAD3UL, 0x61C69362UL, 0x7198540DUL, 13 0x82F63B78UL, 0x92A8FC17UL, 0xA24BB5A6UL, 0xB21572C9UL, 14 0xC38D26C4UL, 0xD3D3E1ABUL, 0xE330A81AUL, 0xF36E6F75UL 20 #define CRC32C_XOR_OUT 0xFFFFFFFFUL 25 #define CRC32C_INIT 0xFFFFFFFFUL 34 for (size_t i = 0; i < len; i++) { in crc32_c() 35 crc = crc32c_table[(crc ^ data[i]) & 0x0F] ^ (crc >> 4); in crc32_c() 36 crc = crc32c_table[(crc ^ ((uint32_t)data[i] >> 4)) & 0x0F] ^ (crc >> 4); in crc32_c()
|
D | crc8_sw.c | 12 0x00, 0x07, 0x0e, 0x09, 0x1c, 0x1b, 0x12, 0x15, 13 0x38, 0x3f, 0x36, 0x31, 0x24, 0x23, 0x2a, 0x2d 17 0x00, 0x1c, 0x38, 0x24, 0x70, 0x6c, 0x48, 0x54, 18 0xe0, 0xfc, 0xd8, 0xc4, 0x90, 0x8c, 0xa8, 0xb4 26 for (i = 0; i < cnt; i++) { in crc8_ccitt() 39 for (i = 0; i < cnt; i++) { in crc8_rohc() 41 val = (val >> 4) ^ crc8_rohc_small_table[val & 0x0f]; in crc8_rohc() 42 val = (val >> 4) ^ crc8_rohc_small_table[val & 0x0f]; in crc8_rohc() 53 for (i = 0; i < len; i++) { in crc8() 56 for (j = 0; j < 8; j++) { in crc8() [all …]
|
/Zephyr-latest/tests/lib/cmsis_dsp/matrix/src/ |
D | binary_q7.pat | 2 0x29, 0xFF, 0x63, 0x16, 0x2D, 0xFC, 0xDA, 0x05, 3 0xDE, 0x22, 0xDE, 0x06, 0x21, 0x11, 0x01, 0xC9, 4 0x29, 0xFC, 0x4B, 0x17, 0xD1, 0x48, 0xF8, 0x08, 5 0xA8, 0xFC, 0x17, 0xFF, 0x12, 0x15, 0x40, 0xC8, 6 0xD0, 0xA0, 0xE2, 0xEB, 0x0D, 0xF9, 0xD1, 0xD8, 7 0xF5, 0x2C, 0x08, 0xF3, 0xD9, 0x03, 0xD7, 0xE8, 8 0xFE, 0x2C, 0x0C, 0xF5, 0x2C, 0x14, 0xFC, 0xFB, 9 0xEE, 0x0C, 0xFC, 0x15, 0xD9, 0xE6, 0xFA, 0xF5, 10 0x10, 0x11, 0x0F, 0x13, 0xC9, 0xEF, 0x1C, 0xCB, 11 0xD5, 0xCA, 0x18, 0xF9, 0xFC, 0x03, 0xBA, 0x46, [all …]
|
D | unary_q7.pat | 2 0xFB, 0x03, 0x09, 0x06, 0xF5, 0x03, 0x08, 0x0C, 3 0xFE, 0xFE, 0x0A, 0x02, 0xFF, 0x0B, 0x00, 0x0B, 4 0x08, 0x00, 0xFF, 0x0A, 0xFD, 0x06, 0x08, 0xF2, 5 0x0B, 0xEC, 0xF8, 0x05, 0xFE, 0x06, 0xE3, 0xF7, 6 0x0D, 0xF7, 0xF1, 0xEE, 0x15, 0xF0, 0xFE, 0x0B, 7 0xFE, 0x19, 0x04, 0x0C, 0x19, 0xFC, 0x05, 0xFB, 8 0xFC, 0x08, 0x10, 0x05, 0xFF, 0xFB, 0xF0, 0xEC, 9 0x01, 0x0C, 0x04, 0xF2, 0xFB, 0x0C, 0x00, 0xFB, 10 0x02, 0x07, 0xFE, 0xFE, 0x08, 0x09, 0xF8, 0x06, 11 0xED, 0xF4, 0xFE, 0x01, 0xFE, 0xFD, 0x07, 0xF9, [all …]
|
/Zephyr-latest/dts/bindings/display/ |
D | ilitek,ili9342c.yaml | 16 default: [0x01] 23 default: [0x40] 29 default: [0x00] 35 default: [0x00, 0x1c] 41 default: [0x0a, 0x80, 0x1d, 0x04] 44 default SS bit value (0) may interfere with display rotation. 48 default: [0x07] 54 default: [0x9, 0x9] 60 default: [0x00] 66 default: [0xB2] [all …]
|
D | ilitek,ili9488.yaml | 13 default: [0xb0, 0x11] 19 default: [0x02, 0x02, 0x3b] 22 default SS bit value (0) may interfere with display rotation. 26 default: [0x0e, 0x0e] 32 default: [0x43] 38 default: [0x00, 0x40, 0x00, 0x40] 45 0x0f, 46 0x1f, 47 0x1c, 48 0x0b, [all …]
|
D | ilitek,ili9340.yaml | 14 default: [0x01] 20 default: [0x00, 0x1b] 26 default: [0x0a, 0x82, 0x27] 29 default SS bit value (0) may interfere with display rotation. 33 default: [0x26, 0x00] 39 default: [0x00] 45 default: [0x31, 0x3c] 51 default: [0xc0] 58 0x0f, 59 0x22, [all …]
|
/Zephyr-latest/drivers/sensor/bosch/bma280/ |
D | bma280.h | 17 #define BMA280_REG_CHIP_ID 0x00 18 #if DT_INST_PROP(0, is_bmc150) 19 #define BMA280_CHIP_ID 0xFA 21 #define BMA280_CHIP_ID 0xFB 24 #define BMA280_REG_PMU_BW 0x10 26 #define BMA280_PMU_BW 0x08 28 #define BMA280_PMU_BW 0x09 30 #define BMA280_PMU_BW 0x0A 32 #define BMA280_PMU_BW 0x0B 34 #define BMA280_PMU_BW 0x0C [all …]
|
/Zephyr-latest/drivers/flash/ |
D | jesd216.c | 20 res->mode_clocks = (packed >> 5) & 0x07; in extract_instr() 21 res->wait_states = packed & 0x1F; in extract_instr() 37 rv = 0; in jesd216_bfp_read_support() 43 rv = 0; in jesd216_bfp_read_support() 47 rv = 0; in jesd216_bfp_read_support() 53 rv = extract_instr(dw4 >> 0, res); in jesd216_bfp_read_support() 67 if ((dw17 >> 24) != 0) { in jesd216_bfp_read_support() 83 rv = extract_instr(dw3 >> 0, res); in jesd216_bfp_read_support() 90 if ((uint8_t)(dw17 >> 8) != 0) { in jesd216_bfp_read_support() 91 rv = extract_instr(dw17 >> 0, res); in jesd216_bfp_read_support() [all …]
|
/Zephyr-latest/include/zephyr/dt-bindings/clock/ |
D | mcux_lpc_syscon_clock.h | 19 #define MCUX_CTIMER0_CLK 0 25 #define MCUX_FLEXCOMM0_CLK MCUX_LPC_CLK_ID(0x01, 0x00) 26 #define MCUX_FLEXCOMM1_CLK MCUX_LPC_CLK_ID(0x01, 0x01) 27 #define MCUX_FLEXCOMM2_CLK MCUX_LPC_CLK_ID(0x01, 0x02) 28 #define MCUX_FLEXCOMM3_CLK MCUX_LPC_CLK_ID(0x01, 0x03) 29 #define MCUX_FLEXCOMM4_CLK MCUX_LPC_CLK_ID(0x01, 0x04) 30 #define MCUX_FLEXCOMM5_CLK MCUX_LPC_CLK_ID(0x01, 0x05) 31 #define MCUX_FLEXCOMM6_CLK MCUX_LPC_CLK_ID(0x01, 0x06) 32 #define MCUX_FLEXCOMM7_CLK MCUX_LPC_CLK_ID(0x01, 0x07) 33 #define MCUX_FLEXCOMM8_CLK MCUX_LPC_CLK_ID(0x01, 0x08) [all …]
|
/Zephyr-latest/boards/madmachine/mm_feather/ |
D | mmfeather_sdram_ini_dcd.c | 20 0xD2, 22 0x04, 0x30, 24 0x41, 26 0xCC, 0x03, 0xAC, 0x04, 28 0x40, 0x0F, 0xC0, 0x68, 0xFF, 0xFF, 0xFF, 0xFF, 30 0x40, 0x0F, 0xC0, 0x6C, 0xFF, 0xFF, 0xFF, 0xFF, 32 0x40, 0x0F, 0xC0, 0x70, 0xFF, 0xFF, 0xFF, 0xFF, 34 0x40, 0x0F, 0xC0, 0x74, 0xFF, 0xFF, 0xFF, 0xFF, 36 0x40, 0x0F, 0xC0, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 38 0x40, 0x0F, 0xC0, 0x7C, 0xFF, 0xFF, 0xFF, 0xFF, [all …]
|
/Zephyr-latest/boards/madmachine/mm_swiftio/ |
D | mmswiftio_sdram_ini_dcd.c | 20 0xD2, 22 0x04, 0x30, 24 0x41, 26 0xCC, 0x03, 0xAC, 0x04, 28 0x40, 0x0F, 0xC0, 0x68, 0xFF, 0xFF, 0xFF, 0xFF, 30 0x40, 0x0F, 0xC0, 0x6C, 0xFF, 0xFF, 0xFF, 0xFF, 32 0x40, 0x0F, 0xC0, 0x70, 0xFF, 0xFF, 0xFF, 0xFF, 34 0x40, 0x0F, 0xC0, 0x74, 0xFF, 0xFF, 0xFF, 0xFF, 36 0x40, 0x0F, 0xC0, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 38 0x40, 0x0F, 0xC0, 0x7C, 0xFF, 0xFF, 0xFF, 0xFF, [all …]
|
/Zephyr-latest/drivers/can/ |
D | can_native_linux.c | 61 for (int filter_id = 0; filter_id < ARRAY_SIZE(data->filters); filter_id++) { in dispatch_frame() 95 while (linux_socketcan_poll_data(data->dev_fd) == 0) { in rx_thread() 99 data->tx_callback(dev, 0, data->tx_user_data); in rx_thread() 102 if ((data->common.mode & CAN_MODE_LOOPBACK) == 0U) { in rx_thread() 106 if ((count <= 0) || !data->common.started) { in rx_thread() 113 if ((frame.flags & CAN_FRAME_RTR) != 0U) { in rx_thread() 118 LOG_DBG("Received %d bytes. Id: 0x%x, ID type: %s %s", in rx_thread() 120 (frame.flags & CAN_FRAME_IDE) != 0 ? "extended" : "standard", in rx_thread() 121 (frame.flags & CAN_FRAME_RTR) != 0 ? ", RTR frame" : ""); in rx_thread() 140 LOG_DBG("Sending %d bytes on %s. Id: 0x%x, ID type: %s %s", in can_native_linux_send() [all …]
|
/Zephyr-latest/dts/arm/nuvoton/npcx/ |
D | npcx-alts-map.dtsi | 12 /* SCFG DEVALT 0 */ 14 alts = <&scfg 0x00 0x0 0>; 17 alts = <&scfg 0x00 0x3 1>; 21 alts = <&scfg 0x00 0x7 1>; 26 alts = <&scfg 0x01 0x0 0>; 29 alts = <&scfg 0x01 0x2 0>; 32 alts = <&scfg 0x01 0x3 0>; 35 alts = <&scfg 0x01 0x4 1>; 38 alts = <&scfg 0x01 0x5 0>; 41 alts = <&scfg 0x01 0x6 0>; [all …]
|
/Zephyr-latest/drivers/sensor/tdk/icm42605/ |
D | icm42605_reg.h | 10 /* BANK 0 */ 11 #define REG_DEVICE_CONFIG 0x11 12 #define REG_DRIVE_CONFIG 0x13 13 #define REG_INT_CONFIG 0x14 14 #define REG_FIFO_CONFIG 0x16 15 #define REG_TEMP_DATA1 0x1D 16 #define REG_TEMP_DATA0 0x1E 17 #define REG_ACCEL_DATA_X1 0x1F 18 #define REG_ACCEL_DATA_X0 0x20 19 #define REG_ACCEL_DATA_Y1 0x21 [all …]
|
/Zephyr-latest/include/zephyr/dt-bindings/adc/ |
D | b91-adc.h | 10 #define DT_ADC_GPIO_PB0 0x01 11 #define DT_ADC_GPIO_PB1 0x02 12 #define DT_ADC_GPIO_PB2 0x03 13 #define DT_ADC_GPIO_PB3 0x04 14 #define DT_ADC_GPIO_PB4 0x05 15 #define DT_ADC_GPIO_PB5 0x06 16 #define DT_ADC_GPIO_PB6 0x07 17 #define DT_ADC_GPIO_PB7 0x08 18 #define DT_ADC_GPIO_PD0 0x09 19 #define DT_ADC_GPIO_PD1 0x0a [all …]
|
/Zephyr-latest/drivers/sensor/bosch/bmi270/ |
D | bmi270_config_file.h | 12 0xc8, 0x2e, 0x00, 0x2e, 0x80, 0x2e, 0x1a, 0x00, 0xc8, 0x2e, 0x00, 13 0x2e, 0xc8, 0x2e, 0x00, 0x2e, 0xc8, 0x2e, 0x00, 0x2e, 0xc8, 0x2e, 14 0x00, 0x2e, 0xc8, 0x2e, 0x00, 0x2e, 0xc8, 0x2e, 0x00, 0x2e, 0x90, 15 0x32, 0x21, 0x2e, 0x59, 0xf5, 0x10, 0x30, 0x21, 0x2e, 0x6a, 0xf5, 16 0x1a, 0x24, 0x22, 0x00, 0x80, 0x2e, 0x3b, 0x00, 0xc8, 0x2e, 0x44, 17 0x47, 0x22, 0x00, 0x37, 0x00, 0xa4, 0x00, 0xff, 0x0f, 0xd1, 0x00, 18 0x07, 0xad, 0x80, 0x2e, 0x00, 0xc1, 0x80, 0x2e, 0x00, 0xc1, 0x80, 19 0x2e, 0x00, 0xc1, 0x80, 0x2e, 0x00, 0xc1, 0x80, 0x2e, 0x00, 0xc1, 20 0x80, 0x2e, 0x00, 0xc1, 0x80, 0x2e, 0x00, 0xc1, 0x80, 0x2e, 0x00, 21 0xc1, 0x80, 0x2e, 0x00, 0xc1, 0x80, 0x2e, 0x00, 0xc1, 0x80, 0x2e, [all …]
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | smp.h | 16 #define BT_SMP_ERR_SUCCESS 0x00 17 #define BT_SMP_ERR_PASSKEY_ENTRY_FAILED 0x01 18 #define BT_SMP_ERR_OOB_NOT_AVAIL 0x02 19 #define BT_SMP_ERR_AUTH_REQUIREMENTS 0x03 20 #define BT_SMP_ERR_CONFIRM_FAILED 0x04 21 #define BT_SMP_ERR_PAIRING_NOTSUPP 0x05 22 #define BT_SMP_ERR_ENC_KEY_SIZE 0x06 23 #define BT_SMP_ERR_CMD_NOTSUPP 0x07 24 #define BT_SMP_ERR_UNSPECIFIED 0x08 25 #define BT_SMP_ERR_REPEATED_ATTEMPTS 0x09 [all …]
|
/Zephyr-latest/samples/net/prometheus/src/ |
D | dummy_psk.h | 10 static const unsigned char psk[] = {0x01, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 11 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f};
|