Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 25 of 63) sorted by relevance

123

/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dslip.c42 int16_t SLIP_recv_byte(char byte, slip_state_t *state) in SLIP_recv_byte() argument
44 if (byte == '\xc0') { in SLIP_recv_byte()
58 if (byte == '\xdb') { in SLIP_recv_byte()
62 return byte; in SLIP_recv_byte()
64 if (byte == '\xdc') { in SLIP_recv_byte()
68 if (byte == '\xdd') { in SLIP_recv_byte()
Dstub_io.c35 uint8_t byte = READ_REG(UART_FIFO(0)) & 0xff; in uart_isr() local
36 (*s_rx_cb_func)(byte); in uart_isr()
56 uint8_t byte = READ_REG(USB_DEVICE_EP1_REG); in jtag_serial_isr() local
57 (*s_rx_cb_func)(byte); in jtag_serial_isr()
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/
Dburn-block-data-cmd.rst22 **Example:** Write to eFuse BLOCK3 from binary file ``device_id.bin``, starting at eFuse byte offse…
45byte order (treating the eFuse block as if it was an array of bytes). It can be read back in firmw…
58 …k can be written at a time. The ``--offset`` argument allows writing to a byte offset inside the e…
Dburn-key-cmd.rst41 …e sensitive data). Enabled if --debug is used. Use this option to see the byte order of the data b…
50 …tected. The hardware will still have access to them. These keys are burned in reversed byte order.
56 …` and ``BLOCK2`` to burn flash encryption and secure boot v2 keys because byte order will be incor…
81 …d writes the private key into a eFuse block. The key is written to the block in reverse byte order.
97 …distinguish between such keys. The key purpose option determines protection and byte order for key.
120 …cept flash encryption, will be burned in direct byte order. The encryption key is written in rever…
153 … v1 features require the key to be written to the eFuse block in reversed byte order, compared to …
175 Reversing the byte order
218 Reversing the byte order
248 This example uses ``--no-read-protect`` to expose the byte order written into eFuse blocks.
[all …]
/hal_espressif-latest/components/esp_system/
Deh_frame_parser.c245 #define DW_LEB128_HIGHEST_BIT(byte) (((byte) >> 7) & 1) argument
246 #define DW_LEB128_SIGN_BIT(byte) (((byte) >> 6) & 1) argument
271 uint8_t byte = 0; in decode_leb128() local
274 byte = bytes[size++]; in decode_leb128()
275 res |= (byte & 0x7f) << shf; in decode_leb128()
277 if (DW_LEB128_HIGHEST_BIT(byte) == 0) in decode_leb128()
281 if (is_signed && shf <= DW_LEB128_MAX_SHIFT && DW_LEB128_SIGN_BIT(byte)) { in decode_leb128()
/hal_espressif-latest/components/soc/esp32c3/include/soc/
Dtwai_struct.h155 uint32_t byte: 8; /* ACRx[7:0] Acceptance Code */ member
162 uint32_t byte: 8; /* AMRx[7:0] Acceptance Mask */ member
175 uint32_t byte: 8; /* TX/RX Byte X [7:0] */ member
/hal_espressif-latest/components/soc/esp32s3/include/soc/
Dtwai_struct.h156 uint32_t byte: 8; /* ACRx[7:0] Acceptance Code */ member
163 uint32_t byte: 8; /* AMRx[7:0] Acceptance Mask */ member
176 uint32_t byte: 8; /* TX/RX Byte X [7:0] */ member
/hal_espressif-latest/components/soc/esp32/include/soc/
Dtwai_struct.h153 uint32_t byte: 8; /* ACRx[7:0] Acceptance Code */ member
160 uint32_t byte: 8; /* AMRx[7:0] Acceptance Mask */ member
173 uint32_t byte: 8; /* TX/RX Byte X [7:0] */ member
/hal_espressif-latest/components/soc/esp32s2/include/soc/
Dtwai_struct.h154 uint32_t byte: 8; /* ACRx[7:0] Acceptance Code */ member
161 uint32_t byte: 8; /* AMRx[7:0] Acceptance Mask */ member
174 uint32_t byte: 8; /* TX/RX Byte X [7:0] */ member
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dadvanced-commands.rst19 …verification is not usually needed. However, if you wish to perform a byte-by-byte verification of…
91 * ``--bytes 1`` sends the most common ``RDSR`` command (05h) and returns a single byte of status.
92 … both ``RDSR`` (05h) and ``RDSR2`` (35h), reads one byte of status from each, and returns a two by…
93 …5h), ``RDSR2`` (35h), and ``RDSR3`` (15h), reads one byte of status from each, and returns a 3 byt…
142 …The ``chip_id`` command allows you to read a 4 byte ID which forms part of the MAC address. It is …
144 …r bytes long, the lower three bytes are the final bytes of the MAC address. The upper byte is zero.
/hal_espressif-latest/components/soc/esp32c6/include/soc/
Dtwai_struct.h499 uint32_t byte:8; member
508 uint32_t byte: 8; /* ACRx[7:0] Acceptance Code */ member
515 uint32_t byte: 8; /* AMRx[7:0] Acceptance Mask */ member
/hal_espressif-latest/components/soc/esp32h2/include/soc/
Dtwai_struct.h499 uint32_t byte:8; member
508 uint32_t byte: 8; /* ACRx[7:0] Acceptance Code */ member
515 uint32_t byte: 8; /* AMRx[7:0] Acceptance Mask */ member
/hal_espressif-latest/components/hal/esp32/include/hal/
Dtwai_ll.h653 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.acr[i], byte, ((code_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
654 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.amr[i], byte, ((mask_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
691 rx_frame->bytes[i] = HAL_FORCE_READ_U32_REG_FIELD(hw->tx_rx_buffer[i], byte); in twai_ll_get_rx_buffer()
877 reg_save->acr_reg[i] = HAL_FORCE_READ_U32_REG_FIELD(hw->acceptance_filter.acr[i], byte); in twai_ll_save_reg()
878 reg_save->amr_reg[i] = HAL_FORCE_READ_U32_REG_FIELD(hw->acceptance_filter.amr[i], byte); in twai_ll_save_reg()
905 HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.acr[i], byte, reg_save->acr_reg[i]); in twai_ll_restore_reg()
906 HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.amr[i], byte, reg_save->amr_reg[i]); in twai_ll_restore_reg()
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/
Dfirmware-image-format.rst21 …sists of a header, a variable number of data segments and a footer. Multi-byte fields are little-e…
25 …n extended header, a variable number of data segments and a footer. Multi-byte fields are little-e…
124 …The 16-byte long extended header comes right after the image header, individual segments come righ…
162byte less than a multiple of 16 bytes. A last byte (thus making the file size a multiple of 16) is…
/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/
Dbtm_ble_privacy.c143 UINT8 byte; in btm_ble_clear_irk_index() local
147 byte = index / 8; in btm_ble_clear_irk_index()
149 btm_cb.ble_ctr_cb.irk_list_mask[byte] &= (~(1 << bit)); in btm_ble_clear_irk_index()
165 UINT8 byte; in btm_ble_find_irk_index() local
169 byte = i / 8; in btm_ble_find_irk_index()
172 if ((btm_cb.ble_ctr_cb.irk_list_mask[byte] & (1 << bit)) == 0) { in btm_ble_find_irk_index()
173 btm_cb.ble_ctr_cb.irk_list_mask[byte] |= (1 << bit); in btm_ble_find_irk_index()
/hal_espressif-latest/components/esp_system/ld/esp32c2/
Dmemory.ld.in30 * are connected to the data port of the CPU and eg allow byte-wise access.
43 * has a 0x18 byte file header, and each segment has a 0x08 byte segment
/hal_espressif-latest/tools/esptool_py/flasher_stub/include/
Dslip.h32 int16_t SLIP_recv_byte(char byte, slip_state_t *state);
/hal_espressif-latest/tools/esptool_py/test/
Dtest_merge_bin.py20 from esptool.util import byte
146 assert byte(merged_hdr, 2) == 3 # flash mode dout
147 assert byte(merged_hdr, 3) & 0xF0 == 0x10 # flash size 2MB (ESP32)
149 assert byte(bootloader_hdr, 3) & 0x0F == byte(merged_hdr, 3) & 0x0F
/hal_espressif-latest/components/esp_system/ld/esp32c6/
Dmemory.ld.in47 * are connected to the data port of the CPU and eg allow byte-wise access.
60 * has a 0x18 byte file header, and each segment has a 0x08 byte segment
/hal_espressif-latest/components/esp_system/ld/esp32h2/
Dmemory.ld.in47 * are connected to the data port of the CPU and eg allow byte-wise access.
60 * has a 0x18 byte file header, and each segment has a 0x08 byte segment
/hal_espressif-latest/components/esp_system/ld/esp32c3/
Dmemory.ld.in40 * are connected to the data port of the CPU and eg allow byte-wise access.
53 * has a 0x18 byte file header, and each segment has a 0x08 byte segment
/hal_espressif-latest/components/hal/esp32s2/include/hal/
Dtwai_ll.h555 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.acr[i], byte, ((code_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
556 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.amr[i], byte, ((mask_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
593 rx_frame->bytes[i] = HAL_FORCE_READ_U32_REG_FIELD(hw->tx_rx_buffer[i], byte); in twai_ll_get_rx_buffer()
/hal_espressif-latest/components/hal/esp32s3/include/hal/
Dtwai_ll.h555 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.acr[i], byte, ((code_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
556 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.amr[i], byte, ((mask_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
593 rx_frame->bytes[i] = HAL_FORCE_READ_U32_REG_FIELD(hw->tx_rx_buffer[i], byte); in twai_ll_get_rx_buffer()
/hal_espressif-latest/components/hal/esp32c3/include/hal/
Dtwai_ll.h555 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.acr[i], byte, ((code_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
556 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.amr[i], byte, ((mask_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
593 rx_frame->bytes[i] = HAL_FORCE_READ_U32_REG_FIELD(hw->tx_rx_buffer[i], byte); in twai_ll_get_rx_buffer()
/hal_espressif-latest/components/hal/esp32h2/include/hal/
Dtwai_ll.h562 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.acr[i], byte, ((code_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
563 …HAL_FORCE_MODIFY_U32_REG_FIELD(hw->acceptance_filter.amr[i], byte, ((mask_swapped >> (i * 8)) & 0x… in twai_ll_set_acc_filter()
600 rx_frame->bytes[i] = HAL_FORCE_READ_U32_REG_FIELD(hw->tx_rx_buffer[i], byte); in twai_ll_get_rx_buffer()

123