Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 56) sorted by relevance

123

/hal_espressif-latest/components/wpa_supplicant/src/utils/
Dbase64.c22 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/
DCMakeLists.txt48 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)
DKconfig4 bool "Use custom eFuse table"
62 bool "Repeat, 3/4 and None (common table does not support it)"
Defuse_table_gen.py451 table = FuseTable.from_csv(input)
453 table.verify(type_table)
454 return table
/hal_espressif-latest/components/esp_common/
DKconfig8 …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/
Dadc_ll.h241 …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/
Desp32.rom.eco3.ld2 ESP32 ECO3 ROM address table
Desp32.rom.syscalls.ld1 /* 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)
Desp32.rom.spiflash.ld2 Address table for SPI driver functions in ESP32 ROM.
Desp32.rom.newlib-nano.ld5 _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/
Dadc_ll.h202 …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/
Dadc_ll.h202 …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/
Desp32c3.rom.eco3_bt_funcs.ld7 ESP32C3 ECO3 ROM address table
Desp32c3.rom.eco3.ld2 ESP32C3 ECO3 ROM address table
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/
Dmem_definition_base.py194 table = CSVFuseTable.from_csv(extend_efuse_table_file.read())
195 for p in table:
/hal_espressif-latest/components/hal/esp32c3/include/hal/
Dadc_ll.h210 …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/
Dadc_ll.h256 …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/
Desp32s2.rom.newlib-nano.ld5 _scanf_float entries in syscall table. This is done automatically
/hal_espressif-latest/components/hal/esp32s2/include/hal/
Dadc_ll.h250 …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/
Dflashing-firmware.rst33 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/…
Dflash-modes.rst120 …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/
DCHANGELOG.md15 - **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/
Dburn-bit-cmd.rst6 … efuse blocks by bit number. This is useful when the fields are not represented in the eFuse table.
Dindex.rst59 - ``--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/
Dbootloader.ld142 /* C++ exception handlers table: */

123