/hal_espressif-latest/components/xtensa/include/xtensa/ |
D | xtruntime-frames.h | 37 #define STRUCT_FIELD(ctype,size,pre,name) .set pre##name, XT_STRUCT_OFFSET; .set XT_STR… argument 38 #define STRUCT_AFIELD(ctype,size,pre,name,n) .set pre##name, XT_STRUCT_OFFSET;\ argument 39 .set XT_STRUCT_OFFSET, pre##name + (size)*(n); 40 #define STRUCT_AFIELD_A(ctype,size,align,pre,name,n) .set pre##name, XT_STRUCT_OFFSET\ argument 41 ….ifgt (align-1); .set pre##name, XT_STRUCT_OFFSET + (align - (XT_STRUCT_OFFSET & (align-1))); .end… 42 .set XT_STRUCT_OFFSET, pre##name + (size)*(n); 46 #define STRUCT_FIELD(ctype,size,pre,name) pre##name: .space size argument 47 #define STRUCT_AFIELD(ctype,size,pre,name,n) pre##name: .if n ; .space (size)*(n) ; .endif argument 48 #define STRUCT_AFIELD_A(ctype,size,align,pre,name,n) .balign align ; pre##name: .if n ; .space (siz… argument 54 #define STRUCT_FIELD(ctype,size,pre,name) ctype name; argument [all …]
|
/hal_espressif-latest/components/hal/esp32/include/hal/ |
D | spi_ll.h | 548 static inline int spi_ll_freq_for_pre_n(int fapb, int pre, int n) in spi_ll_freq_for_pre_n() argument 550 return (fapb / (pre * n)); in spi_ll_freq_for_pre_n() 583 int pre, n, h, l; in spi_ll_master_cal_clock() local 590 pre = ((fapb / n) + (hz / 2)) / hz; in spi_ll_master_cal_clock() 591 if (pre <= 0) { in spi_ll_master_cal_clock() 592 pre = 1; in spi_ll_master_cal_clock() 594 if (pre > 8192) { in spi_ll_master_cal_clock() 595 pre = 8192; in spi_ll_master_cal_clock() 597 errval = abs(spi_ll_freq_for_pre_n(fapb, pre, n) - hz); in spi_ll_master_cal_clock() 601 bestpre = pre; in spi_ll_master_cal_clock() [all …]
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | spi_ll.h | 675 static inline int spi_ll_freq_for_pre_n(int fapb, int pre, int n) in spi_ll_freq_for_pre_n() argument 677 return (fapb / (pre * n)); in spi_ll_freq_for_pre_n() 710 int pre, n, h, l; in spi_ll_master_cal_clock() local 717 pre = ((fapb / n) + (hz / 2)) / hz; in spi_ll_master_cal_clock() 718 if (pre <= 0) { in spi_ll_master_cal_clock() 719 pre = 1; in spi_ll_master_cal_clock() 721 if (pre > 16) { in spi_ll_master_cal_clock() 722 pre = 16; in spi_ll_master_cal_clock() 724 errval = abs(spi_ll_freq_for_pre_n(fapb, pre, n) - hz); in spi_ll_master_cal_clock() 728 bestpre = pre; in spi_ll_master_cal_clock() [all …]
|
/hal_espressif-latest/components/hal/esp32c6/include/hal/ |
D | spi_ll.h | 665 static inline int spi_ll_freq_for_pre_n(int fapb, int pre, int n) in spi_ll_freq_for_pre_n() argument 667 return (fapb / (pre * n)); in spi_ll_freq_for_pre_n() 700 int pre, n, h, l; in spi_ll_master_cal_clock() local 707 pre = ((fapb / n) + (hz / 2)) / hz; in spi_ll_master_cal_clock() 708 if (pre <= 0) { in spi_ll_master_cal_clock() 709 pre = 1; in spi_ll_master_cal_clock() 711 if (pre > 16) { in spi_ll_master_cal_clock() 712 pre = 16; in spi_ll_master_cal_clock() 714 errval = abs(spi_ll_freq_for_pre_n(fapb, pre, n) - hz); in spi_ll_master_cal_clock() 718 bestpre = pre; in spi_ll_master_cal_clock() [all …]
|
/hal_espressif-latest/components/hal/esp32c2/include/hal/ |
D | spi_ll.h | 661 static inline int spi_ll_freq_for_pre_n(int fapb, int pre, int n) in spi_ll_freq_for_pre_n() argument 663 return (fapb / (pre * n)); in spi_ll_freq_for_pre_n() 696 int pre, n, h, l; in spi_ll_master_cal_clock() local 703 pre = ((fapb / n) + (hz / 2)) / hz; in spi_ll_master_cal_clock() 704 if (pre <= 0) { in spi_ll_master_cal_clock() 705 pre = 1; in spi_ll_master_cal_clock() 707 if (pre > 16) { in spi_ll_master_cal_clock() 708 pre = 16; in spi_ll_master_cal_clock() 710 errval = abs(spi_ll_freq_for_pre_n(fapb, pre, n) - hz); in spi_ll_master_cal_clock() 714 bestpre = pre; in spi_ll_master_cal_clock() [all …]
|
/hal_espressif-latest/components/hal/esp32c3/include/hal/ |
D | spi_ll.h | 661 static inline int spi_ll_freq_for_pre_n(int fapb, int pre, int n) in spi_ll_freq_for_pre_n() argument 663 return (fapb / (pre * n)); in spi_ll_freq_for_pre_n() 696 int pre, n, h, l; in spi_ll_master_cal_clock() local 703 pre = ((fapb / n) + (hz / 2)) / hz; in spi_ll_master_cal_clock() 704 if (pre <= 0) { in spi_ll_master_cal_clock() 705 pre = 1; in spi_ll_master_cal_clock() 707 if (pre > 16) { in spi_ll_master_cal_clock() 708 pre = 16; in spi_ll_master_cal_clock() 710 errval = abs(spi_ll_freq_for_pre_n(fapb, pre, n) - hz); in spi_ll_master_cal_clock() 714 bestpre = pre; in spi_ll_master_cal_clock() [all …]
|
/hal_espressif-latest/components/hal/esp32h2/include/hal/ |
D | spi_ll.h | 667 static inline int spi_ll_freq_for_pre_n(int fapb, int pre, int n) in spi_ll_freq_for_pre_n() argument 669 return (fapb / (pre * n)); in spi_ll_freq_for_pre_n() 702 int pre, n, h, l; in spi_ll_master_cal_clock() local 709 pre = ((fapb / n) + (hz / 2)) / hz; in spi_ll_master_cal_clock() 710 if (pre <= 0) { in spi_ll_master_cal_clock() 711 pre = 1; in spi_ll_master_cal_clock() 713 if (pre > 16) { in spi_ll_master_cal_clock() 714 pre = 16; in spi_ll_master_cal_clock() 716 errval = abs(spi_ll_freq_for_pre_n(fapb, pre, n) - hz); in spi_ll_master_cal_clock() 720 bestpre = pre; in spi_ll_master_cal_clock() [all …]
|
/hal_espressif-latest/components/hal/esp32s2/include/hal/ |
D | spi_ll.h | 623 static inline int spi_ll_freq_for_pre_n(int fapb, int pre, int n) in spi_ll_freq_for_pre_n() argument 625 return (fapb / (pre * n)); in spi_ll_freq_for_pre_n() 658 int pre, n, h, l; in spi_ll_master_cal_clock() local 665 pre = ((fapb / n) + (hz / 2)) / hz; in spi_ll_master_cal_clock() 666 if (pre <= 0) { in spi_ll_master_cal_clock() 667 pre = 1; in spi_ll_master_cal_clock() 669 if (pre > 8192) { in spi_ll_master_cal_clock() 670 pre = 8192; in spi_ll_master_cal_clock() 672 errval = abs(spi_ll_freq_for_pre_n(fapb, pre, n) - hz); in spi_ll_master_cal_clock() 676 bestpre = pre; in spi_ll_master_cal_clock() [all …]
|
/hal_espressif-latest/tools/esptool_py/ |
D | CONTRIBUTING.rst | 79 `pre-commit <https://pre-commit.com/>`_ is a framework for managing pre-commit hooks. These hooks h… 81 To use the tool, first install ``pre-commit``. Then enable the ``pre-commit`` and ``commit-msg`` gi… 85 $ python -m pip install pre-commit 86 $ pre-commit install -t pre-commit -t commit-msg 88 On the first commit ``pre-commit`` will install the hooks, subsequent checks will be significantly … 103 ``Ruff`` and ``Conventional Precommit Linter`` tools will be automatically run by ``pre-commit`` if… 116 …ker <https://github.com/codespell-project/codespell>`_ integrated into the pre-commit process. If …
|
D | pyproject.toml | 57 "pre-commit",
|
D | CHANGELOG.md | 50 - Use ruff instead of flake8 and black both in pre-commit and CI
|
/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/tools/esptool_py/docs/en/espefuse/ |
D | burn-custom-mac-cmd.rst | 16 …The correct way is to contact Espressif to order chips with ``CUSTOM_MAC`` pre-burned from the fac…
|
/hal_espressif-latest/components/mbedtls/ |
D | Kconfig | 678 bool "Enable pre-shared-key ciphersuites" 681 … Enable to show configuration for different types of pre-shared-key TLS authentatication methods. 690 Enable to support symmetric key PSK (pre-shared-key) TLS key exchange modes. 697 Enable to support Diffie-Hellman PSK (pre-shared-key) TLS authentication modes. 704 … Enable to support Elliptic-Curve-Diffie-Hellman PSK (pre-shared-key) TLS authentication modes. 711 Enable to support RSA PSK (pre-shared-key) TLS authentication modes. 1063 fixed point multiplication using pre-computed tables in the flash memory.
|
D | CMakeLists.txt | 85 # Use pre-generated source files in mbedtls repository
|
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
D | configuration-file.rst | 7 To ensure this two-way serial connection works properly, ``esptool.py`` is tuned with several pre-d…
|
/hal_espressif-latest/components/bootloader/subproject/ |
D | CMakeLists.txt | 104 "No pre-generated key for a reflashable secure bootloader is available, "
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/ |
D | provisioner_prov.c | 22 #define PROV_SVC_ADV_RX_CHECK(pre, cur) ((cur) < (pre) ? ((cur) + (UINT32_MAX - (pre)) >= 200) : … argument
|
/hal_espressif-latest/components/esp_system/ |
D | Kconfig | 220 - Default is to use UART0 on pre-defined GPIOs. 519 Debug stubs are used by OpenOCD to execute pre-compiled onboard code
|
/hal_espressif-latest/tools/esptool_py/docs/en/ |
D | troubleshooting.rst | 51 If you're using a pre-made development board or module then the built-in power regulator & capacito…
|
/hal_espressif-latest/components/bootloader/ |
D | Kconfig.projbuild | 835 In this case, the pre-burned key is used and no new key is generated.
|