Searched refs:hex (Results 1 – 25 of 43) sorted by relevance
12
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/ |
D | mesh_util.c | 18 static const char hex[] = "0123456789abcdef"; in bt_hex() local 31 str[i * 2] = hex[b[i] >> 4]; in bt_hex() 32 str[i * 2 + 1] = hex[b[i] & 0xf]; in bt_hex()
|
/hal_espressif-latest/components/bt/common/hci_log/ |
D | bt_hci_log.c | 137 void bt_hci_log_record_hex(bt_hci_log_t *p_hci_log_ctl, uint8_t *hex, uint8_t hex_len) in bt_hci_log_record_hex() argument 146 hci_log_char = ((*hex) >> 4); in bt_hci_log_record_hex() 157 hci_log_char = ((*hex) & 0x0f); in bt_hci_log_record_hex() 178 ++ hex; in bt_hci_log_record_hex()
|
/hal_espressif-latest/tools/esptool_py/test/ |
D | test_merge_bin.py | 57 cmd += [hex(offset), name] 203 hex = self.run_merge_bin( 211 f.write(hex) 256 with tempfile.NamedTemporaryFile(suffix=".hex", delete=False) as hex: 257 hex.write(merged) 260 [(0x1000, hex.name)], 369 itertools.chain(*[(hex(addr), f) for addr, f in iter_addr_offset_tuples])
|
D | test_imagegen.py | 55 expected = hex(expected) 57 expected = hex(ord(expected)) 59 actual = hex(actual) 61 actual = hex(ord(actual))
|
/hal_espressif-latest/components/wpa_supplicant/src/utils/ |
D | common.c | 31 int hex2byte(const char *hex) in hex2byte() argument 34 a = hex2num(*hex++); in hex2byte() 37 b = hex2num(*hex++); in hex2byte() 82 int hexstr2bin(const char *hex, u8 *buf, size_t len) in hexstr2bin() argument 86 const char *ipos = hex; in hexstr2bin()
|
D | common.h | 383 int hex2byte(const char *hex); 384 int hexstr2bin(const char *hex, u8 *buf, size_t len);
|
/hal_espressif-latest/zephyr/ |
D | Kconfig | 9 hex 17 hex 55 hex
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/ |
D | Kconfig.tracemem | 22 hex
|
D | Kconfig.memory | 22 hex "Fixed Static RAM size"
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/ |
D | Kconfig.cache | 18 hex 83 hex
|
D | Kconfig.memory | 22 hex "Fixed Static RAM size"
|
D | Kconfig.tracemem | 33 hex
|
/hal_espressif-latest/components/soc/esp32s2/include/soc/ |
D | Kconfig.soc_caps.in | 335 hex 347 hex 491 hex 731 hex 735 hex
|
/hal_espressif-latest/components/soc/esp32/include/soc/ |
D | Kconfig.soc_caps.in | 283 hex 295 hex 467 hex 635 hex
|
/hal_espressif-latest/components/soc/ |
D | Kconfig | 38 hex
|
/hal_espressif-latest/components/soc/esp32c2/include/soc/ |
D | Kconfig.soc_caps.in | 199 hex 255 hex 331 hex
|
/hal_espressif-latest/components/esp_system/port/soc/esp32/ |
D | Kconfig.tracemem | 34 hex
|
D | Kconfig.memory | 25 hex "Fixed Static RAM size"
|
/hal_espressif-latest/components/soc/esp32s3/include/soc/ |
D | Kconfig.soc_caps.in | 11 hex 395 hex 407 hex 863 hex 867 hex
|
/hal_espressif-latest/components/soc/esp32c3/include/soc/ |
D | Kconfig.soc_caps.in | 263 hex 287 hex 351 hex 463 hex
|
/hal_espressif-latest/components/esp_timer/ |
D | Kconfig | 51 hex 78 hex
|
/hal_espressif-latest/components/esp_app_format/ |
D | Kconfig.projbuild | 44 …At startup, the app will read this many hex characters from the embedded APP ELF SHA-256 hash value
|
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/ |
D | burn-efuse-cmd.rst | 19 New values can be a numeric value in decimal or hex (with "0x" prefix). eFuse bits can only be burn… 97 …ber in the range 0-29, 32 or 33. Values 30 and 31 cannot be set. The "raw" hex value for pins 32, …
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32/ |
D | fields.py | 354 print_field(mac_version, hex(mac_version_value)) 371 print_field(crc_field, hex(crc_val))
|
/hal_espressif-latest/components/soc/esp32h2/include/soc/ |
D | Kconfig.soc_caps.in | 347 hex 443 hex 587 hex
|
12