/hal_espressif-latest/components/wpa_supplicant/src/utils/ |
D | base64.c | 22 size_t *out_len, const char *table, int add_pad) in base64_gen_encode() argument 46 *pos++ = table[(in[0] >> 2) & 0x3f]; in base64_gen_encode() 47 *pos++ = table[(((in[0] & 0x03) << 4) | (in[1] >> 4)) & 0x3f]; in base64_gen_encode() 48 *pos++ = table[(((in[1] & 0x0f) << 2) | (in[2] >> 6)) & 0x3f]; in base64_gen_encode() 49 *pos++ = table[in[2] & 0x3f]; in base64_gen_encode() 59 *pos++ = table[(in[0] >> 2) & 0x3f]; in base64_gen_encode() 61 *pos++ = table[((in[0] & 0x03) << 4) & 0x3f]; in base64_gen_encode() 65 *pos++ = table[(((in[0] & 0x03) << 4) | in base64_gen_encode() 67 *pos++ = table[((in[1] & 0x0f) << 2) & 0x3f]; in base64_gen_encode() 85 size_t *out_len, const char *table) in base64_gen_decode() argument [all …]
|
/hal_espressif-latest/components/efuse/ |
D | CMakeLists.txt | 48 add_custom_target(efuse-common-table COMMAND "${python}" 51 add_deprecated_target_alias(efuse_common_table efuse-common-table) 61 …add_custom_target(efuse-custom-table COMMAND "${python}" "${CMAKE_CURRENT_SOURCE_DIR}/efuse_table_… 63 add_deprecated_target_alias(efuse_custom_table efuse-custom-table) 65 add_custom_target(efuse-custom-table COMMAND) 66 add_deprecated_target_alias(efuse_custom_table efuse-custom-table) 69 add_custom_target(show-efuse-table COMMAND "${python}" 72 add_deprecated_target_alias(show_efuse_table show-efuse-table)
|
D | Kconfig | 4 bool "Use custom eFuse table" 62 bool "Repeat, 3/4 and None (common table does not support it)"
|
D | efuse_table_gen.py | 451 table = FuseTable.from_csv(input) 453 table.verify(type_table) 454 return table
|
/hal_espressif-latest/components/esp_common/ |
D | Kconfig | 8 …pre-generated lookup table. This option can be used to turn off the use of the look-up table in or…
|
/hal_espressif-latest/components/hal/esp32/include/hal/ |
D | adc_ll.h | 241 …l_digi_set_pattern_table(adc_unit_t adc_n, uint32_t pattern_index, adc_digi_pattern_config_t table) in adc_ll_digi_set_pattern_table() argument 249 switch (table.bit_width) { in adc_ll_digi_set_pattern_table() 265 pattern.val = (table.atten & 0x3) | ((bit_width) << 2) | ((table.channel & 0xF) << 4); in adc_ll_digi_set_pattern_table() 267 if (table.unit == ADC_UNIT_1) { in adc_ll_digi_set_pattern_table()
|
/hal_espressif-latest/components/esp_rom/esp32/ld/ |
D | esp32.rom.eco3.ld | 2 ESP32 ECO3 ROM address table
|
D | esp32.rom.syscalls.ld | 1 /* These ROM functions call respective entries in the syscall table. 8 times (in ROM) -> _times_r (in ROM) -> syscall table entry _times_r -> _times_r (in IDF)
|
D | esp32.rom.spiflash.ld | 2 Address table for SPI driver functions in ESP32 ROM.
|
D | esp32.rom.newlib-nano.ld | 5 _scanf_float entries in syscall table. This is done automatically 109 real implementations in IDF through the syscall table.
|
/hal_espressif-latest/components/hal/esp32h2/include/hal/ |
D | adc_ll.h | 202 …l_digi_set_pattern_table(adc_unit_t adc_n, uint32_t pattern_index, adc_digi_pattern_config_t table) in adc_ll_digi_set_pattern_table() argument 209 pattern.val = (table.atten & 0x3) | ((table.channel & 0x7) << 2) | ((table.unit & 0x1) << 5); in adc_ll_digi_set_pattern_table()
|
/hal_espressif-latest/components/hal/esp32c6/include/hal/ |
D | adc_ll.h | 202 …l_digi_set_pattern_table(adc_unit_t adc_n, uint32_t pattern_index, adc_digi_pattern_config_t table) in adc_ll_digi_set_pattern_table() argument 209 pattern.val = (table.atten & 0x3) | ((table.channel & 0x7) << 2) | ((table.unit & 0x1) << 5); in adc_ll_digi_set_pattern_table()
|
/hal_espressif-latest/components/esp_rom/esp32c3/ld/ |
D | esp32c3.rom.eco3_bt_funcs.ld | 7 ESP32C3 ECO3 ROM address table
|
D | esp32c3.rom.eco3.ld | 2 ESP32C3 ECO3 ROM address table
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/ |
D | mem_definition_base.py | 194 table = CSVFuseTable.from_csv(extend_efuse_table_file.read()) 195 for p in table:
|
/hal_espressif-latest/components/hal/esp32c3/include/hal/ |
D | adc_ll.h | 210 …l_digi_set_pattern_table(adc_unit_t adc_n, uint32_t pattern_index, adc_digi_pattern_config_t table) in adc_ll_digi_set_pattern_table() argument 217 pattern.val = (table.atten & 0x3) | ((table.channel & 0x7) << 2) | ((table.unit & 0x1) << 5); in adc_ll_digi_set_pattern_table()
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | adc_ll.h | 256 …l_digi_set_pattern_table(adc_unit_t adc_n, uint32_t pattern_index, adc_digi_pattern_config_t table) in adc_ll_digi_set_pattern_table() argument 263 pattern.val = (table.atten & 0x3) | ((table.channel & 0xF) << 2); in adc_ll_digi_set_pattern_table() 264 if (table.unit == ADC_UNIT_1){ in adc_ll_digi_set_pattern_table()
|
/hal_espressif-latest/components/esp_rom/esp32s2/ld/ |
D | esp32s2.rom.newlib-nano.ld | 5 _scanf_float entries in syscall table. This is done automatically
|
/hal_espressif-latest/components/hal/esp32s2/include/hal/ |
D | adc_ll.h | 250 …l_digi_set_pattern_table(adc_unit_t adc_n, uint32_t pattern_index, adc_digi_pattern_config_t table) in adc_ll_digi_set_pattern_table() argument 257 pattern.val = (table.atten & 0x3) | ((table.channel & 0xF) << 4); in adc_ll_digi_set_pattern_table() 258 if (table.unit == ADC_UNIT_1) { in adc_ll_digi_set_pattern_table()
|
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
D | flashing-firmware.rst | 33 The same applies to the bootloader and the partition table. 50 …T} build/bootloader/bootloader.bin 0x8000 build/partition_table/partition-table.bin 0x10000 build/… 75 …T} build/bootloader/bootloader.bin 0x8000 build/partition_table/partition-table.bin 0x10000 build/…
|
D | flash-modes.rst | 120 …The ESP-IDF flashes a partition table to the flash at offset 0x8000. All of the partitions in this…
|
/hal_espressif-latest/tools/esptool_py/ |
D | CHANGELOG.md | 15 - **efuse**: Updates efuse table for esp32c5 16 - **efuse**: Updates efuse table for esp32p4 23 - **espefuse**: Adds support extend efuse table by user CSV file 120 - **efuse**: Update key purpose table and tests
|
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/ |
D | burn-bit-cmd.rst | 6 … efuse blocks by bit number. This is useful when the fields are not represented in the eFuse table.
|
D | index.rst | 59 - ``--extend-efuse-table`` - CSV file from `ESP-IDF <https://docs.espressif.com/projects/esp-idf/>`… 124 > espefuse.py -c esp32 --extend-efuse-table path/esp_efuse_custom_table.csv summary
|
/hal_espressif-latest/components/bootloader/subproject/main/ld/esp32s2/ |
D | bootloader.ld | 142 /* C++ exception handlers table: */
|