text
stringlengths
1
9.98k
__index_level_0__
int64
0
4.17k
/* ROM functions for hardware AES support. It is not recommended to use these functions directly, use the wrapper functions in hwcrypto/aes.h instead. */ // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this fil...
3,737
/* */ #pragma once #include #include #include "soc/gpio_reg.h" #ifdef __cplusplus extern "C" { #endif /** \defgroup gpio_apis, uart configuration and communication related apis */ /** @addtogroup gpio_apis */ #define GPIO_REG_READ(reg) READ_PERI_REG(reg) #define GPIO_REG_WRITE(reg, val) ...
3,738
/* */ #ifndef _ROM_RTC_H_ #define _ROM_RTC_H_ #include "ets_sys.h" #include #include #include "esp_assert.h" #include "soc/soc.h" #include "soc/rtc_cntl_reg.h" #include "soc/reset_reasons.h" #ifdef __cplusplus extern "C" { #endif /** \defgroup rtc_apis, rtc registers and memory related apis */ /** @addtogro...
3,739
DEEP_SLEEP = BIT1 //CPU OFF, PLL OFF, only specific timer could wake up } SLEEP_MODE; typedef enum { NO_MEAN = 0, POWERON_RESET = 1, /**<1, Vbat power on reset*/ RTC_SW_SYS_RESET = 3, /**<3, Software reset digital core*/ DEEPSLEEP_RESET = 5, /...
3,739
h ESP_STATIC_ASSERT((soc_reset_reason_t)POWERON_RESET == RESET_REASON_CHIP_POWER_ON, "POWERON_RESET != RESET_REASON_CHIP_POWER_ON"); ESP_STATIC_ASSERT((soc_reset_reason_t)RTC_SW_SYS_RESET == RESET_REASON_CORE_SW, "RTC_SW_SYS_RESET != RESET_REASON_CORE_SW"); ESP_STATIC_ASSERT((soc_reset_reason_t)DEEPSLEEP_RESET == RESET...
3,739
= RESET_REASON_CPU0_SW"); ESP_STATIC_ASSERT((soc_reset_reason_t)RTCWDT_CPU_RESET == RESET_REASON_CPU0_RTC_WDT, "RTCWDT_CPU_RESET != RESET_REASON_CPU0_RTC_WDT"); ESP_STATIC_ASSERT((soc_reset_reason_t)RTCWDT_BROWN_OUT_RESET == RESET_REASON_SYS_BROWN_OUT, "RTCWDT_BROWN_OUT_RESET != RESET_REASON_SYS_BROWN_OUT"); ESP_STATIC...
3,739
/* */ #pragma once #include #include "ets_sys.h" #include "rsa_pss.h" #include "esp_assert.h" #ifdef __cplusplus extern "C" { #endif typedef struct ets_secure_boot_sig_block ets_secure_boot_sig_block_t; typedef struct ets_secure_boot_signature ets_secure_boot_signature_t; typedef struct ets_secure_boot_key_digest...
3,740
) Can be used to verify secure boot status before enabling secure boot permanently. If stage_load parameter is true, bootloader is copied into staging buffer in RAM at the same time. If result is SB_SUCCESS, the "simple hash" of the bootloader is copied into verified_hash. */ ets_secure_boot_status...
3,740
@param index Digest to revoke. Must be 0, 1 or 2. */ void ets_secure_boot_revoke_public_key_digest(int index); #define CRC_SIGN_BLOCK_LEN 1196 #define SIG_BLOCK_PADDING 4096 #define ETS_SECURE_BOOT_V2_SIGNATURE_MAGIC 0xE7 /* Secure Boot V2 signature block (Up to 3 in a signature sector are appended to the im...
3,740
/* ROM functions for hardware bigint support. It is not recommended to use these functions directly, use the wrapper functions in hwcrypto/mpi.h instead. */ // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this ...
3,741
/* #ifndef _ROM_OPI_FLASH_H_ #define _ROM_OPI_FLASH_H_ #include #include #include #include "spi_flash.h" #ifdef __cplusplus extern "C" { #endif typedef struct { uint16_t cmd; /*!< Command value */ uint16_t cmdBitLen; /*!< Command byte length*/ uint32_t *addr; /*!< ...
3,742
/* ROM functions for hardware Digital Signature peripheral verification */ // Copyright 2019 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // ...
3,743
Result of AES-CBC encryption of plaintext values. Includes an encrypted message digest. */ uint8_t c[ETS_DS_C_LEN]; } ets_ds_data_t; typedef enum { ETS_DS_OK, ETS_DS_INVALID_PARAM, /* Supplied parameters are invalid */ ETS_DS_INVALID_KEY, /* HMAC peripheral failed to supply key */ ...
3,743
// Copyright 2015-2018 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by app...
3,744
/* */ #ifndef _ROM_EFUSE_H_ #define _ROM_EFUSE_H_ #ifdef __cplusplus extern "C" { #endif #include #include /** \defgroup efuse_APIs efuse APIs /** @addtogroup efuse_APIs */ typedef enum { ETS_EFUSE_KEY_PURPOSE_USER = 0, ETS_EFUSE_KEY_PURPOSE_RESERVED = 1, ETS_EFUSE_KEY_PURPOSE_XTS_AES_256_KEY_1 =...
3,745
/* */ /** */ #pragma once #include #include #include "usb_device.h" #ifdef __cplusplus extern "C" { #endif /** DFU Class Subclass */ #define DFU_SUBCLASS 0x01 /** DFU Class runtime Protocol */ #define DFU_RT_PROTOCOL 0x01 /** DFU Class DFU mode Protocol */ #define DFU_MODE_PROTOCOL 0...
3,746
*/ int dfu_class_handle_req(struct usb_setup_packet *pSetup, int32_t *data_len, uint8_t **data); void dfu_status_cb(enum usb_dc_status_code status, uint8_t *param); int usb_dfu_init(void); int dfu_custom_handle_req(struct usb_setup_packet *pSetup, int32_t *data_len, ...
3,746
/* */ #pragma once #include #ifdef __cplusplus extern "C" { #endif int chip_usb_dw_init(void); int chip_usb_dw_did_persist(void); void chip_usb_dw_prepare_persist(void); uint32_t chip_usb_get_persist_flags(void); void chip_usb_set_persist_flags(uint32_t flags); #ifdef __cplusplus } #endif
3,747
/* */ /** */ #pragma once #include #include #include #ifdef __cplusplus extern "C" { #endif #define CPIO_MODE_FILETYPE_MASK 0xF000 #define CPIO_MODE_FILETYPE_SOCKET 0xC000 #define CPIO_MODE_FILETYPE_SYMLINK 0xA000 #define CPIO_MODE_FILETYPE_REGULAR 0x8000 #define CPIO_MODE_FILETYPE_BLOCKDEV 0x6000 #d...
3,748
/* */ /** */ #pragma once #include #include #ifdef __cplusplus extern "C" { #endif #define BCD(x) ((((x) / 10) 1, */ #define USB_CONFIGURATION_ATTRIBUTES 0xC0 /* Classes */ #define COMMUNICATION_DEVICE_CLASS 0x02 #define COMMUNICATION_DEVICE_CLASS_DATA 0x0A #define HID_CLASS 0x03 #define MASS_...
3,749
*/ void rom_usb_cdc_set_descriptor_patch(void); #ifdef __cplusplus } #endif
3,749
/* */ /** */ #pragma once #include #ifdef __cplusplus extern "C" { #endif /** */ #define USB_EP_DIR_MASK 0x80 #define USB_EP_DIR_IN 0x80 #define USB_EP_DIR_OUT 0x00 /** */ enum usb_dc_status_code { USB_DC_ERROR, /* USB error reported by the controller */ USB_DC_RESET, /* USB reset *...
3,750
/* */ #pragma once #include #ifdef __cplusplus extern "C" { #endif typedef void cdc_acm_device; extern cdc_acm_device *uart_acm_dev; #define ACM_BYTES_PER_TX 64 //ACM statuses are negative to distinguish from USB_DC_* status codes #define ACM_STATUS_LINESTATE_CHANGED -1 #define ACM_STATUS_LINECODING_CHANGED -2 ...
3,751
*/ #define LINE_CTRL_BAUD_RATE (1 << 0) #define LINE_CTRL_RTS (1 << 1) #define LINE_CTRL_DTR (1 << 2) #define LINE_CTRL_DCD (1 << 3) #define LINE_CTRL_DSR (1 << 4) /* Common communication errors for UART.*/ /** @brief Overrun error */ #define UART_ERROR_OVERRUN (1 << 0) /** @brief Parity err...
3,751
/* */ #pragma once #include #ifdef __cplusplus extern "C" { #endif // USB persistence flags. //This bit indicates persistence has been enabled, that is, the USB initialization routines should not //reset the USB device as the device still is initialized and the host detected it with the same cdcacm/dfu //descrip...
3,752
typedef struct { char *memstart; //start of memory region char *memend; //end of memory region char *textstart; //start of text to output char *textend; } usbdc_testament_t; #ifdef __cplusplus } #endif
3,752
/* */ /** */ #pragma once #include #include #ifdef __cplusplus extern "C" { #endif /** CDC Specification release number in BCD format */ #define CDC_SRN_1_20 0x0120 /** Communications Class Subclass Codes */ #define ACM_SUBCLASS 0x02 #define ECM_SUBCLASS 0x06 #define EEM_SUBC...
3,753
/* */ #pragma once #include #ifdef __cplusplus extern "C" { #endif typedef void(*usb_osglue_intdisena_routine_t)(void); typedef int(*usb_osglue_wait_routine_t)(int delay_us); typedef struct { /* Disable USB interrupt */ usb_osglue_intdisena_routine_t int_dis_proc; /* Enable USB interrupt */ usb_...
3,754
/* */ #pragma once #include #include #ifdef __cplusplus extern "C" { #endif #define USB_DESCRIPTOR_TYPE_ACM 0 #define USB_DESCRIPTOR_TYPE_DFU 1 void usb_set_current_descriptor(int descriptor_type); bool usb_get_descriptor(uint16_t type_index, uint16_t lang_id, int32_t *len, uint8_t **da...
3,755
/* */ /** */ #pragma once #include #include #include "usb_dc.h" #include "esp_assert.h" #ifdef __cplusplus extern "C" { #endif / / #define MAX_PACKET_SIZE0 64 /** */ uint8_t ep_addr; }; /** */ struct usb_interface_cfg_data { /** Handler for USB Class specific Control (EP 0) communica...
3,756
/* */ #ifndef _ROM_SHA_H_ #define _ROM_SHA_H_ #include #include #include "ets_sys.h" #ifdef __cplusplus extern "C" { #endif typedef enum { SHA1 = 0, SHA2_224, SHA2_256, SHA_TYPE_MAX } SHA_TYPE; typedef struct SHAContext { bool start; bool in_hardware; // Is this context curr...
3,757
/* */ #ifndef _ROM_LLDESC_H_ #define _ROM_LLDESC_H_ #include #include "sys/queue.h" #include "esp_rom_lldesc.h" #ifdef __cplusplus extern "C" { #endif #define LLDESC_TX_MBLK_SIZE 268 /* */ #define LLDESC_RX_SMBLK_SIZE 64 /* small block size, for small mgmt frame */ #define LLDESC_...
3,758
ESP_MAC_5 */ typedef struct tx_ampdu_entry_s { uint32_t sub_len : 12, dili_num : 7, : 1, null_byte: 2, data : 1, enc : 1, seq : 8; } tx_ampdu_entry_t; typedef struct lldesc_chain_s { lldesc_t *head; lldesc_t *tail...
3,758
/* */ #pragma once #include #ifdef __cplusplus extern "C" { #endif #define SUPPORT_BTDM 0 #define SUPPORT_BTBB 0 #define SUPPORT_WIFI 0 #define SUPPORT_USB_DWCOTG 1 #define SUPPORT_COEXIST 0 #define SUPPORT_MBEDTLS 0 /* Structure and functions for returning ROM global layout */ typedef struct { void *dram0_...
3,759
/* */ #ifndef ROM_CRC_H #define ROM_CRC_H #include #ifdef __cplusplus extern "C" { #endif /** \defgroup crc_apis, uart configuration and communication related apis */ /** @addtogroup crc_apis */ /* Standard CRC8/16/32 algorithms. */ // CRC-8 x8+x2+x1+1 0x07 // CRC16-CCITT x16+x12+x5+1 ...
3,760
/* */ /* */ #ifndef _ROM_MD5_HASH_H_ #define _ROM_MD5_HASH_H_ #include #ifdef __cplusplus extern "C" { #endif struct MD5Context { uint32_t buf[4]; uint32_t bits[2]; uint8_t in[64]; }; void MD5Init(struct MD5Context *context); void MD5Update(struct MD5Context *context, unsigned char const *buf, unsig...
3,761
/* */ #ifndef _ROM_CACHE_H_ #define _ROM_CACHE_H_ #include #include "esp_bit_defs.h" #ifdef __cplusplus extern "C" { #endif /** \defgroup cache_apis, cache operation related apis */ /** @addtogroup cache_apis */ #define TAG_SIZE 4 // L1 icache /* basic param */ #define MAX_L1_ICACHE_SIZE (16 * 1024) #d...
3,762
c #define MIN_L2_CACHE_LINE_SIZE 64 /* cal param */ #define MAX_L2_TAG_BANK_ITEMS (MAX_L2_CACHE_SIZE / MAX_L2_CACHE_BANK_NUM / MIN_L2_CACHE_LINE_SIZE) #define MAX_L2_TAG_BANK_WAY_ITEMS (MAX_L2_TAG_BANK_ITEMS / MAX_L2_CACHE_WAY) #define MAX_L2_TAG_BANK_SIZE (MAX_L2_TAG_BANK_ITEMS * TAG_SIZE) #define MAX_L2_TAG...
3,762
/* */ #pragma once #include #ifdef __cplusplus extern "C" { #endif #define ETS_DIGEST_LEN 32 /* SHA-256, bytes */ typedef enum { ECDSA_CURVE_P192 = 1, ECDSA_CURVE_P256 = 2 } ECDSA_CURVE; int ets_ecdsa_verify(const uint8_t *key, const uint8_t *sig, ECDSA_CURVE curve_id, const uint8_t *digest, uint8_t *ve...
3,763
/* */ #ifndef _ROM_UART_H_ #define _ROM_UART_H_ #include "esp_types.h" #include "esp_attr.h" #include "ets_sys.h" #include "soc/soc.h" #include "soc/uart_reg.h" #ifdef __cplusplus extern "C" { #endif /** \defgroup uart_apis, uart configuration and communication related apis */ /** @addtogroup uart_apis */ #d...
3,764
/* */ #pragma once #include #include #include "esp_attr.h" #include "esp_rom_spiflash.h" #ifdef __cplusplus extern "C" { #endif #define PERIPHS_SPI_FLASH_CMD SPI1_MEM_C_CMD_REG #define PERIPHS_SPI_FLASH_ADDR SPI1_MEM_C_ADDR_REG #define PERIPHS_SPI_FLASH_CTRL SPI1_MEM...
3,765
/* */ #ifndef _ROM_LIBC_STUBS_H_ #define _ROM_LIBC_STUBS_H_ #include #include #include #include #include #include #include #include #ifdef __cplusplus extern "C" { #endif /* ESP32-C6 ROM code contains implementations of some of C library functions. Whenever a function in ROM needs to use a syscall, it calls...
3,766
/* */ #ifndef _ROM_ETS_SYS_H_ #define _ROM_ETS_SYS_H_ #include #include #ifdef __cplusplus extern "C" { #endif /** \defgroup ets_sys_apis, ets system related apis */ /** @addtogroup ets_sys_apis */ / */ /** \defgroup ets_apis, Espressif Task Scheduler related apis */ /** @addtogroup ets_apis */ ty...
3,767
*/ /** */ void ets_set_user_start(uint32_t start); void ets_set_appcpu_boot_addr(uint32_t start); /** */ /** \defgroup ets_printf_apis, ets_printf related apis used in ets */ /** @addtogroup ets_printf_apis */ /** */ int ets_printf(const char *fmt, ...); /** */ uint8_t ets_get_printf_channel(void); ...
3,767
/* */ #ifndef _ROM_HMAC_H_ #define _ROM_HMAC_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include "efuse.h" void ets_hmac_enable(void); void ets_hmac_disable(void); /* Use the "upstream" HMAC key (ETS_EFUSE_KEY_PURPOSE_HMAC_UP) to digest a message. */ int ets_hmac_calculate_message(ets_efuse...
3,768
*/ int ets_hmac_invalidate_downstream(ets_efuse_purpose_t purpose); #ifdef __cplusplus } #endif #endif // _ROM_HMAC_H_
3,768
/* */ #ifndef _ROM_AES_H_ #define _ROM_AES_H_ #include #include #ifdef __cplusplus extern "C" { #endif #define AES_BLOCK_SIZE 16 enum AES_TYPE { AES_ENC, AES_DEC, }; enum AES_BITS { AES128, AES192, AES256 }; void ets_aes_enable(void); void ets_aes_disable(void); void ets_aes_set_endian(b...
3,769
/* */ #pragma once #include #include #include "esp_attr.h" #include "soc/gpio_reg.h" #ifdef __cplusplus extern "C" { #endif /** \defgroup gpio_apis, uart configuration and communication related apis */ /** @addtogroup gpio_apis */ #define GPIO_REG_READ(reg) READ_PERI_REG(reg) #define GPIO_REG...
3,770
/* */ #pragma once #include #include #include "esp_assert.h" #include "soc/soc.h" #include "soc/lp_system_reg.h" #include "soc/reset_reasons.h" #ifdef __cplusplus extern "C" { #endif /** \defgroup rtc_apis, rtc registers and memory related apis */ /** @addtogroup rtc_apis */ / */ #define RTC_S...
3,771
DEEP_SLEEP = BIT1 //CPU OFF, PLL OFF, only specific timer could wake up } SLEEP_MODE; typedef enum { NO_MEAN = 0, POWERON_RESET = 1, /**<1, Vbat power on reset*/ SW_SYS_RESET = 3, /**<3, Software reset digital core*/ PMU_SYS_PWR_DOWN_RESET = 5, /**<5, PMU HP system power do...
3,771
h ESP_STATIC_ASSERT((soc_reset_reason_t)POWERON_RESET == RESET_REASON_CHIP_POWER_ON, "POWERON_RESET != RESET_REASON_CHIP_POWER_ON"); ESP_STATIC_ASSERT((soc_reset_reason_t)SW_SYS_RESET == RESET_REASON_CORE_SW, "SW_SYS_RESET != RESET_REASON_CORE_SW"); ESP_STATIC_ASSERT((soc_reset_reason_t)PMU_SYS_PWR_DOWN_RESET == RESET_...
3,771
= RESET_REASON_CPU0_SW"); ESP_STATIC_ASSERT((soc_reset_reason_t)SW_CPU_RESET == RESET_REASON_CPU_SW, "SW_CPU_RESET != RESET_REASON_CPU_SW"); ESP_STATIC_ASSERT((soc_reset_reason_t)HP_CORE_LP_WDT_RESET == RESET_REASON_CPU_RWDT, "HP_CORE_LP_WDT_RESET != RESET_REASON_CPU_RWDT"); ESP_STATIC_ASSERT((soc_reset_reason_t)BROWN_...
3,771
= RESET_REASON_CORE_USB_JTAG"); ESP_STATIC_ASSERT((soc_reset_reason_t)CHIP_USB_UART_RESET == RESET_REASON_CORE_USB_UART, "CHIP_USB_UART_RESET != RESET_REASON_CORE_USB_UART"); ESP_STATIC_ASSERT((soc_reset_reason_t)JTAG_RESET == RESET_REASON_CPU_JTAG, "JTAG_RESET != RESET_REASON_CPU_JTAG"); ESP_STATIC_ASSERT((soc_reset_r...
3,771
/* */ #pragma once #include #include #include "ets_sys.h" #include "ecdsa.h" #include "rsa_pss.h" #include "esp_assert.h" #ifdef __cplusplus extern "C" { #endif #if CONFIG_SECURE_BOOT_V2_ENABLED || CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT typedef struct ets_secure_boot_sig_block ets_secure_boot_sig_block_t; typ...
3,772
*/ ets_secure_boot_status_t ets_secure_boot_verify_bootloader_with_keys(uint8_t *verified_hash, const ets_secure_boot_key_digests_t *trusted_keys, bool stage_load); /* Read key digests from efuse. Any revoked/missing digests will be marked as NULL */ ETS_STATUS ets_secure_boot_read_key_digests(ets_secure_boot_key_...
3,772
/* */ #ifndef _ROM_BIGINT_H_ #define _ROM_BIGINT_H_ #include #include #ifdef __cplusplus extern "C" { #endif void ets_bigint_enable(void); void ets_bigint_disable(void); int ets_bigint_multiply(const uint32_t *x, const uint32_t *y, uint32_t len_words); int ets_bigint_modmult(const uint32_t *x, const uint32_t ...
3,773
/* */ #ifndef _ROM_OPI_FLASH_H_ #define _ROM_OPI_FLASH_H_ #include #include #include #include #include "spi_flash.h" #ifdef __cplusplus extern "C" { #endif typedef struct { uint8_t mode; uint8_t cmd_bit_len; uint16_t cmd; uint32_t addr; uint8_t addr_bit_len; uint8_t dummy_bit_len; ...
3,774
< Command byte length*/ uint32_t *addr; /*!< Point to address value*/ uint32_t addrBitLen; /*!< Address byte length*/ uint32_t *txData; /*!< Point to send data buffer*/ uint32_t txDataBitLen; /*!< Send data byte length.*/ uint32_t *rxData; /*!< Point ...
3,774
/* */ #pragma once #ifdef __cplusplus extern "C" { #endif #include #include #define ETS_DS_MAX_BITS 4096 #define ETS_DS_IV_LEN 16 /* Length of parameter 'C' stored in flash (not including IV) Comprises encrypted Y, M, rinv, md (32), mprime (4), length (4), padding (8) Note that if ETS_DS_MAX_BITSrsa_le...
3,775
/* */ #pragma once #include "esp_err.h" #ifdef __cplusplus extern "C" { #endif /* Note: Most of esp_flash APIs in ROM are compatible with headers in ESP-IDF, this function just adds ROM-specific parts */ struct spi_flash_chip_t; typedef struct esp_flash_t esp_flash_t; /* Structure to wrap "global" data used b...
3,776
/* */ #ifndef _ROM_RSA_PSS_H_ #define _ROM_RSA_PSS_H_ #include #include #include #ifdef __cplusplus extern "C" { #endif #define ETS_SIG_LEN 384 /* Bytes */ #define ETS_DIGEST_LEN 32 /* SHA-256, bytes */ typedef struct { uint8_t n[384]; /* Public key modulus */ uint32_t e; /* Public key exponent */ ...
3,777
/* */ #pragma once #include "soc/soc_caps.h" #if SOC_KEY_MANAGER_SUPPORTED #include #include "esp_attr.h" #include "ets_sys.h" #include "km.h" #if __cplusplus extern "C" { #endif // store huk info, occupy 96 words struct huk_info { #define HUK_INFO_LEN 384 uint8_t info[HUK_INFO_LEN]; uint32_t crc; } PACKE...
3,778
/* */ #ifndef _ROM_EFUSE_H_ #define _ROM_EFUSE_H_ #ifdef __cplusplus extern "C" { #endif #include #include #include /** \defgroup efuse_APIs efuse APIs /** @addtogroup efuse_APIs */ typedef enum { ETS_EFUSE_KEY_PURPOSE_USER = 0, ETS_EFUSE_KEY_PURPOSE_ECDSA_KEY = 1, ETS_EFUSE_KEY_PURPOSE_XTS_AES_...
3,779
/* */ #ifndef _KM_H #define _KM_H #include "soc/soc_caps.h" #if SOC_KEY_MANAGER_SUPPORTED #include #include "soc/soc.h" #include "ets_sys.h" #if __cplusplus extern "C" { #endif /* huk mode type */ typedef enum { HUK_MODE_RECOVER = 0, HUK_MODE_GEN = 1, } huk_mode_t; /** */ ETS_STATUS esp_rom_check_reco...
3,780
/* */ #pragma once #define ESP_ROM_HAS_CRC_LE (1) // ROM CRC library supports Little Endian #define ESP_ROM_HAS_CRC_BE (1) // ROM CRC library supports Big Endian #define ESP_ROM_HAS_MZ_CRC32 (1) // ROM has mz_crc32 function #define ESP_ROM_HAS_JPEG_DECODE (1) // ROM has J...
3,781
/* */ #pragma once #define ESP_ROM_HAS_CRC_LE (1) // ROM CRC library supports Little Endian #define ESP_ROM_HAS_CRC_BE (1) // ROM CRC library supports Big Endian #define ESP_ROM_HAS_JPEG_DECODE (1) // ROM has JPEG decode library #define ESP_ROM_UART_CLK_IS_XTAL ...
3,782
3,782
/* */ #define ESP_ROM_USB_OTG_NUM (-1) // No USB_OTG CDC in the ROM, set -1 for Kconfig usage. #define ESP_ROM_USB_SERIAL_DEVICE_NUM (-1) // No USB_SERIAL_JTAG in the ROM, set -1 for Kconfig usage.
3,783
/* */ #pragma once #define ESP_ROM_HAS_CRC_LE (1) // ROM CRC library supports Little Endian #define ESP_ROM_HAS_CRC_BE (1) // ROM CRC library supports Big Endian #define ESP_ROM_UART_CLK_IS_XTAL (1) // UART clock source is selected to XTAL in ROM #define ESP_ROM_USB_SERIA...
3,784
3,784
/* */ #pragma once #define ESP_ROM_HAS_CRC_LE (1) // ROM CRC library supports Little Endian #define ESP_ROM_HAS_CRC_BE (1) // ROM CRC library supports Big Endian #define ESP_ROM_HAS_MZ_CRC32 (1) // ROM has mz_crc32 function #define ESP_ROM_HAS_JPEG_DECODE ...
3,785
A workaround is required to prevent printf functions from crashing #define ESP_ROM_HAS_LAYOUT_TABLE (1) // ROM has the layout table #define ESP_ROM_HAS_SPI_FLASH (1) // ROM has the implementation of SPI Flash driver #define ESP_ROM_HAS_ETS_PRINTF_BUG (1) // ROM has ets_printf bug when...
3,785
#define ESP_ROM_HAS_SW_FLOAT (1) // ROM has libgcc software floating point emulation functions
3,785
/* */ #pragma once #define ESP_ROM_HAS_CRC_LE (1) // ROM CRC library supports Little Endian #define ESP_ROM_HAS_MZ_CRC32 (1) // ROM has mz_crc32 function #define ESP_ROM_HAS_UART_BUF_SWITCH (1) // ROM has exported the uart buffer switch function #define ESP_ROM_NEEDS_SWSETUP_W...
3,786
3,786
/* */ #pragma once #define ESP_ROM_HAS_CRC_LE (1) // ROM CRC library supports Little Endian #define ESP_ROM_HAS_CRC_BE (1) // ROM CRC library supports Big Endian #define ESP_ROM_UART_CLK_IS_XTAL (1) // UART clock source is selected to XTAL in ROM #define ESP_ROM_USB_SERIA...
3,787
/* */ #pragma once /** */ #include #include "esp_err.h" #include "esp_intr_alloc.h" /** */ esp_err_t esp_timer_impl_early_init(void); /** */ esp_err_t esp_timer_impl_init(intr_handler_t alarm_handler); /** */ void esp_timer_impl_deinit(void); /** */ void esp_timer_impl_set_alarm(uint64_t timestamp); /** ...
3,788
/* */ #pragma once /** */ #include #include #include #include "esp_err.h" #include "esp_etm.h" #include "sdkconfig.h" #ifdef __cplusplus extern "C" { #endif /** */ typedef struct esp_timer* esp_timer_handle_t; /** */ typedef void (*esp_timer_cb_t)(void* arg); /** */ typedef enum { ESP_TIMER_TASK, ...
3,789
< `CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD` const char* name; //!< Timer name, used in esp_timer_dump() function bool skip_unhandled_events; //!< Setting to skip unhandled events in light sleep for periodic timers } esp_timer_create_args_t; /** */ esp_err_t esp_timer_early_init(void); ...
3,789
/* */ #pragma once /** */ #include #ifdef __cplusplus extern "C" { #endif /** */ void esp_timer_private_update_apb_freq(uint32_t apb_ticks_per_us); /** */ void esp_timer_private_set(uint64_t new_us); /** */ void esp_timer_private_advance(int64_t time_diff_us); /** */ void esp_timer_private_lock(void); /...
3,790
/* */ #ifndef _ESP_TLS_H_ #define _ESP_TLS_H_ #include #include "esp_err.h" #include "esp_tls_errors.h" #include "sdkconfig.h" #ifdef CONFIG_ESP_TLS_USING_MBEDTLS #include "mbedtls/ssl.h" #include "mbedtls/x509_crt.h" #ifdef CONFIG_ESP_TLS_SERVER_SESSION_TICKETS #include "mbedtls/ssl_ticket.h" #include "mbedtls/entr...
3,791
_ESP_TLS_H_ */
3,791
/* */ #ifndef _ESP_TLS_ERRORS_H_ #define _ESP_TLS_ERRORS_H_ #include "esp_err.h" #ifdef CONFIG_ESP_TLS_USING_MBEDTLS #include "mbedtls/error.h" #include "mbedtls/ssl.h" #elif CONFIG_ESP_TLS_USING_WOLFSSL #include "wolfssl/wolfcrypt/settings.h" #include "wolfssl/ssl.h" #endif #ifdef __cplusplus extern "C" { #endif ...
3,792
< failed to set/get socket option */ #define ESP_ERR_ESP_TLS_CONNECTION_TIMEOUT (ESP_ERR_ESP_TLS_BASE + 0x06) /*!< new connection in esp_tls_low_level_conn connection timeouted */ #define ESP_ERR_ESP_TLS_SE_FAILED (ESP_ERR_ESP_TLS_BASE + 0x07) /*< esp-tls use Secure Element retu...
3,792
< mbedtls api returned error */ #define ESP_ERR_MBEDTLS_SSL_CONF_ALPN_PROTOCOLS_FAILED (ESP_ERR_ESP_TLS_BASE + 0x14) /*!< mbedtls api returned error */ #define ESP_ERR_MBEDTLS_X509_CRT_PARSE_FAILED (ESP_ERR_ESP_TLS_BASE + 0x15) /*!< mbedtls api returned error */ #define ESP_ERR_MBEDTLS_SSL_CONF_OWN_CER...
3,792
< mbedtls api returned failed */ /* wolfssl specific error codes */ #define ESP_ERR_WOLFSSL_SSL_SET_HOSTNAME_FAILED (ESP_ERR_ESP_TLS_BASE + 0x31) /*!< wolfSSL api returned error */ #define ESP_ERR_WOLFSSL_SSL_CONF_ALPN_PROTOCOLS_FAILED (ESP_ERR_ESP_TLS_BASE + 0x32) /*!< wolfSSL api returned error */ #d...
3,792
< wolfSSL api returned failed */ /** */ #ifdef CONFIG_ESP_TLS_USING_MBEDTLS #define ESP_TLS_ERR_SSL_WANT_READ MBEDTLS_ERR_SSL_WANT_READ #define ESP_TLS_ERR_SSL_WANT_WRITE MBEDTLS_ERR_SSL_WANT_WRITE #define ESP_TLS_ERR_SSL_TIMEOUT MBEDTLS_ERR_...
3,792
< ESP-IDF error type -- esp_err_t */ ESP_TLS_ERR_TYPE_WOLFSSL, /*!< Error code from wolfSSL library */ ESP_TLS_ERR_TYPE_WOLFSSL_CERT_FLAGS, /*!< Certificate flags defined in wolfSSL */ ESP_TLS_ERR_TYPE_MAX, /*!< Last err type -- invalid entry */ } esp_tls_error_type_t; t...
3,792
/* */ #ifndef __ESP_TLS_ERROR_CAPTURE_INTERNAL_H__ #define __ESP_TLS_ERROR_CAPTURE_INTERNAL_H__ /** */ #ifdef __cplusplus extern "C" { #endif /** */ #define ESP_INT_EVENT_TRACKER_CAPTURE(h, type, code) esp_tls_internal_event_tracker_capture(h, type, code) /** void esp_tls_internal_event_tracker_capture(esp_tls...
3,793
/* */ #pragma once #include "esp_tls.h" #include "esp_tls_private.h" /** */ int esp_create_wolfssl_handle(const char *hostname, size_t hostlen, const void *cfg, esp_tls_t *tls, void *server_params); /** */ int esp_wolfssl_handshake(esp_tls_t *tls, const esp_tls_cfg_t *cfg); /** */ ssize_t esp_wolfssl_read(esp_t...
3,794
/* */ #pragma once /** */ #include #include #include #include "esp_err.h" #include "esp_tls_errors.h" #ifdef CONFIG_ESP_TLS_USING_MBEDTLS #include "mbedtls/platform.h" #include "mbedtls/net_sockets.h" #include "mbedtls/esp_debug.h" #include "mbedtls/ssl.h" #include "mbedtls/entropy.h" #include "mbedtls/ctr_drbg...
3,795
CTR_DRBG is deterministic random bit generation based on AES-256 */ mbedtls_ssl_config conf; ...
3,795
< Container for the X.509 client certificate */ mbedtls_x509_crt servercert; /*!< Container for the X.509 server certificate */ }; union { mbedtls_pk_context clientkey; /*!< Container for the private key of the...
3,795
< Underlying socket file descriptor. */ ssize_t (*read)(esp_tls_t *tls, char *data, size_t datalen); /*!< Callback function for reading data from TLS/SSL connection. */ ssize_t (*write)(esp_tls_t *tls, const char *d...
3,795
< esp-tls role - ESP_TLS_CLIENT - ESP_TLS_SERVER */ esp_tls_error_handle_t error_handle; /*!< handle to er...
3,795
/* */ #pragma once #include "esp_tls.h" #include "esp_tls_private.h" /** */ ssize_t esp_mbedtls_read(esp_tls_t *tls, char *data, size_t datalen); /** */ ssize_t esp_mbedtls_write(esp_tls_t *tls, const char *data, size_t datalen); /** */ int esp_mbedtls_handshake(esp_tls_t *tls, const esp_tls_cfg_t *cfg); /** ...
3,796
/* */ #ifndef _ESP_TLS_CRYPTO_H #define _ESP_TLS_CRYPTO_H #include #ifdef __cplusplus extern "C" { #endif /** */ int esp_crypto_sha1(const unsigned char *input, size_t ilen, unsigned char output[20]); /** */ int esp_crypto_base64_encode(unsigned char *dst, size_t dlen, ...
3,797
/* */ #pragma once #ifdef __cplusplus extern "C" { #endif #include #include "esp_types.h" #include "esp_err.h" #include "esp_efuse.h" #include "sdkconfig.h" #include_next "esp_efuse_utility.h" #define ESP_EFUSE_CHK(ret) \ do \ { \ if( ( er...
3,798
/* */ #pragma once #ifdef __cplusplus extern "C" { #endif #define COUNT_EFUSE_REG_PER_BLOCK 8 /* The number of registers per block. */ #define ESP_EFUSE_SECURE_VERSION_NUM_BLOCK EFUSE_BLK0 #define ESP_EFUSE_FIELD_CORRESPONDS_CODING_SCHEME(scheme, max_num_bit) #ifdef __cplusplus } #endif
3,799
/* */ #pragma once #ifdef __cplusplus extern "C" { #endif /** */ typedef enum { EFUSE_BLK0 = 0, /**< Number of eFuse BLOCK0. REPEAT_DATA */ EFUSE_BLK1 = 1, /**< Number of eFuse BLOCK1. SYS_DATA_PART0 */ EFUSE_BLK_SYS_DATA_PART0 = 2, /**< Number of eFuse BLOCK2. ...
3,800