/hal_espressif-3.7.0/zephyr/ |
D | module.yml | 11 version: '1.0' 19 version: '1.0' 27 version: '1.0' 35 version: '1.0' 43 version: '1.0' 51 version: '1.0' 59 version: '1.0' 67 version: '1.0' 75 version: '1.0' 83 version: '1.0' [all …]
|
/hal_espressif-3.7.0/components/efuse/esp32c6/include/ |
D | esp_efuse_rtc_calib.h | 14 //This is the ADC calibration value version burnt in efuse 19 #define VER2IDX(ver) (ver - 1) // Version number to index number of the array 21 * @brief Get the RTC calibration efuse version 23 * @return Version of the stored efuse 30 * @param version Version of the stored efuse 35 uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten); 40 * @param version Version of the stored efuse 46 int esp_efuse_rtc_calib_get_chan_compens(int version, uint32_t adc_unit, uint32_t adc_channel, int … 51 * @param version Version of the stored efuse 57 * - ESP_ERR_INVALID_ARG: If efuse version or attenuation is invalid [all …]
|
/hal_espressif-3.7.0/components/efuse/esp32s3/include/ |
D | esp_efuse_rtc_calib.h | 14 //This is the ADC calibration value version burnt in efuse 20 * @brief Get the RTC calibration efuse version 22 * @return Version of the stored efuse 29 * @param version Version of the stored efuse 34 uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten); 39 * @param version Version of the stored efuse 45 * - ESP_ERR_INVALID_ARG: If efuse version or attenuation is invalid 48 esp_err_t esp_efuse_rtc_calib_get_cal_voltage(int version, uint32_t adc_unit, int atten, uint32_t* …
|
/hal_espressif-3.7.0/components/efuse/esp32h2/include/ |
D | esp_efuse_rtc_calib.h | 14 //This is the ADC calibration value version burnt in efuse 20 * @brief Get the RTC calibration efuse version 22 * @return Version of the stored efuse 29 * @param version Version of the stored efuse 34 uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten); 39 * @param version Version of the stored efuse 44 * - ESP_ERR_INVALID_ARG: If efuse version or attenuation is invalid 47 esp_err_t esp_efuse_rtc_calib_get_cal_voltage(int version, int atten, uint32_t* out_digi, uint32_t*…
|
/hal_espressif-3.7.0/components/efuse/esp32c3/include/ |
D | esp_efuse_rtc_calib.h | 14 //This is the ADC calibration value version burnt in efuse 20 * @brief Get the RTC calibration efuse version 22 * @return Version of the stored efuse 29 * @param version Version of the stored efuse 34 uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten); 39 * @param version Version of the stored efuse 45 * - ESP_ERR_INVALID_ARG: If efuse version or attenuation is invalid 48 esp_err_t esp_efuse_rtc_calib_get_cal_voltage(int version, uint32_t adc_unit, int atten, uint32_t* …
|
/hal_espressif-3.7.0/components/esp_common/include/ |
D | esp_idf_version.h | 13 /** Major version number (X.x.x) */ 15 /** Minor version number (x.X.x) */ 17 /** Patch version number (x.x.X) */ 21 * Macro to convert IDF version number into an integer 28 * Current IDF version, as an integer 39 * Return full IDF version string, same as 'git describe' output. 41 * @note If you are printing the ESP-IDF version in a log file or other information, 42 * this function provides more information than using the numerical version macros. 43 * For example, numerical version macros don't differentiate between development,
|
D | esp_check.h | 28 * A version of ESP_RETURN_ON_ERROR() macro that can be called from ISR. 52 * A version of ESP_GOTO_ON_ERROR() macro that can be called from ISR. 75 * A version of ESP_RETURN_ON_FALSE() macro that can be called from ISR. 97 * A version of ESP_GOTO_ON_FALSE() macro that can be called from ISR. 130 * A version of ESP_RETURN_ON_ERROR() macro that can be called from ISR. 154 * A version of ESP_GOTO_ON_ERROR() macro that can be called from ISR. 177 * A version of ESP_RETURN_ON_FALSE() macro that can be called from ISR. 199 * A version of ESP_GOTO_ON_FALSE() macro that can be called from ISR. 223 * A version of ESP_RETURN_ON_ERROR() macro that can be called from ISR. 247 * A version of ESP_GOTO_ON_ERROR() macro that can be called from ISR. [all …]
|
/hal_espressif-3.7.0/components/efuse/esp32c3/ |
D | esp_efuse_rtc_calib.c | 19 ESP_LOGW("eFuse", "calibration efuse version does not match, set default version to 0"); in esp_efuse_rtc_calib_get_ver() 25 uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten) in esp_efuse_rtc_calib_get_init_code() argument 27 assert((version >= ESP_EFUSE_ADC_CALIB_VER_MIN) && in esp_efuse_rtc_calib_get_init_code() 28 (version <= ESP_EFUSE_ADC_CALIB_VER_MAX)); in esp_efuse_rtc_calib_get_init_code() 47 return init_code + 1000; // version 1 logic in esp_efuse_rtc_calib_get_init_code() 50 esp_err_t esp_efuse_rtc_calib_get_cal_voltage(int version, uint32_t adc_unit, int atten, uint32_t* … in esp_efuse_rtc_calib_get_cal_voltage() argument 55 if ((version < ESP_EFUSE_ADC_CALIB_VER_MIN) || in esp_efuse_rtc_calib_get_cal_voltage() 56 (version > ESP_EFUSE_ADC_CALIB_VER_MAX)) { in esp_efuse_rtc_calib_get_cal_voltage() 88 uint32_t version = esp_efuse_rtc_calib_get_ver(); in esp_efuse_rtc_calib_get_tsens_val() local 89 if (version != 1) { in esp_efuse_rtc_calib_get_tsens_val()
|
/hal_espressif-3.7.0/components/efuse/esp32c2/include/ |
D | esp_efuse_rtc_calib.h | 14 //This is the ADC calibration value version burnt in efuse 20 * @brief Get the RTC calibration efuse version 22 * @return Version of the stored efuse 29 * @param version Version of the stored efuse 34 uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten); 39 * @param version Version of the stored efuse 48 esp_err_t esp_efuse_rtc_calib_get_cal_voltage(int version, uint32_t adc_unit, int atten, uint32_t *…
|
/hal_espressif-3.7.0/components/efuse/esp32c6/ |
D | esp_efuse_rtc_calib.c | 29 ESP_LOGW("eFuse", "calibration efuse version does not match, set default version to 0"); in esp_efuse_rtc_calib_get_ver() 35 uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten) in esp_efuse_rtc_calib_get_init_code() argument 37 /* Version validation should be guaranteed in the caller */ in esp_efuse_rtc_calib_get_init_code() 57 return init_code + 1600; // version 1 logic in esp_efuse_rtc_calib_get_init_code() 60 int esp_efuse_rtc_calib_get_chan_compens(int version, uint32_t adc_unit, uint32_t adc_channel, int … in esp_efuse_rtc_calib_get_chan_compens() argument 62 /* Version validation should be guaranteed in the caller */ in esp_efuse_rtc_calib_get_chan_compens() 98 esp_err_t esp_efuse_rtc_calib_get_cal_voltage(int version, uint32_t adc_unit, int atten, uint32_t* … in esp_efuse_rtc_calib_get_cal_voltage() argument 112 if ((version < ESP_EFUSE_ADC_CALIB_VER_MIN) || in esp_efuse_rtc_calib_get_cal_voltage() 113 (version > ESP_EFUSE_ADC_CALIB_VER_MAX)) { in esp_efuse_rtc_calib_get_cal_voltage() 127 uint32_t chk_offset = (version == ESP_EFUSE_ADC_CALIB_VER1) ? 1500 : (atten == 2) ? 2900 : 2850; in esp_efuse_rtc_calib_get_cal_voltage() [all …]
|
/hal_espressif-3.7.0/tools/esptool_py/docs/en/ |
D | versions.rst | 6 …rsioning specification <https://semver.org/>`_, following the ``MAJOR.MINOR.PATCH`` version number. 10 …fixes are not planned, therefore it is strongly recommended to install the latest version possible. 14 …rds package maintainers. Regular users should always use the most recent version of ``esptool.py``… 20 To see the latest available version and its release notes, visit the `release page on GitHub <https… 22 To get the latest possible version, simply define your dependency as ``esptool`` (without any relea… 27 Some use cases might require a specific ``esptool.py`` version without getting new features, but wi… 30 …otation selects the latest version of ``esptool.py``, greater than or equal to ``v4.0.1``, but sti… 36 If you also want to get new features (instead of just bugfixes), define your version requirement as… 42 …th the latest ``MAJOR`` release of ``esptool.py``, a previous compatible version has to be specifi… 48 …is required, define your dependency as ``esptool==4.1.2``. This specific version will be used and …
|
/hal_espressif-3.7.0/components/esp_hw_support/ |
D | adc_share_hw_ctrl.c | 55 static inline uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten) in esp_efuse_rtc_calib_get_init_code() argument 57 int tag = esp_efuse_rtc_table_get_tag(version, adc_unit, atten, RTCCALIB_V2_PARAM_VINIT); in esp_efuse_rtc_calib_get_init_code() 72 int version = esp_efuse_rtc_calib_get_ver(); in adc_calc_hw_calibration_code() local 76 if ((version >= ESP_EFUSE_ADC_CALIB_VER_MIN) && in adc_calc_hw_calibration_code() 77 (version <= ESP_EFUSE_ADC_CALIB_VER_MAX)) { in adc_calc_hw_calibration_code() 78 // Guarantee the calibration version before calling efuse function in adc_calc_hw_calibration_code() 79 init_code = esp_efuse_rtc_calib_get_init_code(version, adc_n, atten); in adc_calc_hw_calibration_code() 99 ESP_EARLY_LOGV(TAG, "Calib(V%d) ADC%d atten=%d: %04X", version, adc_n + 1, atten, init_code); in adc_calc_hw_calibration_code() 111 int version = esp_efuse_rtc_calib_get_ver(); in adc_load_hw_calibration_chan_compens() local 112 if ((version >= ESP_EFUSE_ADC_CALIB_VER_MIN) && in adc_load_hw_calibration_chan_compens() [all …]
|
D | mac_addr.c | 218 uint8_t version; in get_efuse_mac_custom() 219 esp_efuse_read_field_blob(ESP_EFUSE_MAC_CUSTOM_VER, &version, 8); in get_efuse_mac_custom() 220 if (version != 1) { in get_efuse_mac_custom() 221 // version 0 means has not been setup in get_efuse_mac_custom() 222 if (version == 0) { in get_efuse_mac_custom() 223 ESP_LOGD(TAG, "No base MAC address in eFuse (version=0)"); in get_efuse_mac_custom() 224 } else if (version != 1) { in get_efuse_mac_custom() 225 ESP_LOGE(TAG, "Base MAC address version error, version = %d", version); in get_efuse_mac_custom()
|
/hal_espressif-3.7.0/components/efuse/esp32s3/ |
D | esp_efuse_rtc_calib.c | 22 ESP_LOGW("eFuse", "calibration efuse version does not match, set default version to 0"); in esp_efuse_rtc_calib_get_ver() 28 uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten) in esp_efuse_rtc_calib_get_init_code() argument 30 assert((version >= ESP_EFUSE_ADC_CALIB_VER_MIN) && in esp_efuse_rtc_calib_get_init_code() 31 (version <= ESP_EFUSE_ADC_CALIB_VER_MAX)); in esp_efuse_rtc_calib_get_init_code() 48 //Version 1 logic for calculating ADC ICode based on EFUSE burnt value in esp_efuse_rtc_calib_get_init_code() 64 esp_err_t esp_efuse_rtc_calib_get_cal_voltage(int version, uint32_t adc_unit, int atten, uint32_t *… in esp_efuse_rtc_calib_get_cal_voltage() argument 66 assert((version >= ESP_EFUSE_ADC_CALIB_VER_MIN) && in esp_efuse_rtc_calib_get_cal_voltage() 67 (version <= ESP_EFUSE_ADC_CALIB_VER_MAX)); in esp_efuse_rtc_calib_get_cal_voltage() 99 uint32_t version = esp_efuse_rtc_calib_get_ver(); in esp_efuse_rtc_calib_get_tsens_val() local 100 if (version != 1) { in esp_efuse_rtc_calib_get_tsens_val()
|
/hal_espressif-3.7.0/components/efuse/esp32c2/ |
D | esp_efuse_rtc_calib.c | 21 ESP_LOGW("eFuse", "calibration efuse version does not match, set default version to 0"); in esp_efuse_rtc_calib_get_ver() 27 uint32_t esp_efuse_rtc_calib_get_init_code(int version, uint32_t adc_unit, int atten) in esp_efuse_rtc_calib_get_init_code() argument 29 assert((version >= ESP_EFUSE_ADC_CALIB_VER_MIN) && in esp_efuse_rtc_calib_get_init_code() 30 (version <= ESP_EFUSE_ADC_CALIB_VER_MAX)); in esp_efuse_rtc_calib_get_init_code() 66 esp_err_t esp_efuse_rtc_calib_get_cal_voltage(int version, uint32_t adc_unit, int atten, uint32_t *… in esp_efuse_rtc_calib_get_cal_voltage() argument 68 assert((version >= ESP_EFUSE_ADC_CALIB_VER_MIN) && in esp_efuse_rtc_calib_get_cal_voltage() 69 (version <= ESP_EFUSE_ADC_CALIB_VER_MAX)); in esp_efuse_rtc_calib_get_cal_voltage()
|
/hal_espressif-3.7.0/components/hal/include/hal/ |
D | efuse_hal.h | 24 * @brief Returns chip version 26 * @return Chip version in format: Major * 100 + Minor 31 * @brief Return block version 33 * @return Block version in format: Major * 100 + Minor 47 * @brief Returns major chip version 52 * @brief Returns minor chip version
|
/hal_espressif-3.7.0/components/soc/include/soc/ |
D | chip_revision.h | 16 …* Convenient macros to check current wafer version against a version where some changes are introd… 18 * Use `ESP_CHIP_REV_MAJOR_AND_ABOVE` for changes introduced after a major version is added. 25 * because there is already major version 2 existing. The condition will be met from 1.1 to 1.99, 29 …* because there is no major version 4. The condition will be met from 3.1 to 3.99 and 4.0 and ab… 30 * Even if we add revision 4.0 on this version, the logic will be inherited.
|
/hal_espressif-3.7.0/components/efuse/esp32s2/include/ |
D | esp_efuse_rtc_table.h | 18 //This is the ADC calibration value version burnt in efuse 68 * @brief Get rtc calibration version. 80 * @param version the version of the scheme to index for. 81 * @param extra_params defined differently for each version. 83 int esp_efuse_rtc_table_get_tag(int version, int adc_channel_num, int atten, int extra_params);
|
/hal_espressif-3.7.0/components/esp_app_format/include/ |
D | esp_app_desc.h | 27 uint32_t secure_version; /*!< Secure version */ 29 char version[32]; /*!< Application version */ member 33 char idf_ver[32]; /*!< Version IDF */ 43 * @brief Return esp_app_desc structure. This structure includes app version.
|
/hal_espressif-3.7.0/components/efuse/esp32s2/ |
D | esp_efuse_rtc_table.c | 29 …* ADC, ATTEN form a 2-dim array. For each (version number, extra parameters) tuple we keep a such … 97 int esp_efuse_rtc_table_get_tag(int version, int adc_num, int atten, int extra_params) in esp_efuse_rtc_table_get_tag() argument 102 if (version == 1 && extra_params == RTCCALIB_V1_PARAM_VLOW) { // Volage LOW, Version 1 in esp_efuse_rtc_table_get_tag() 104 } else if (version == 1 && extra_params == RTCCALIB_V1_PARAM_VHIGH) { in esp_efuse_rtc_table_get_tag() 106 } else if (version == 2 && extra_params == RTCCALIB_V2_PARAM_VHIGH) { in esp_efuse_rtc_table_get_tag() 108 } else if (version == 2 && extra_params == RTCCALIB_V2_PARAM_VINIT) { in esp_efuse_rtc_table_get_tag() 115 …ESP_EARLY_LOGV(RTC_TBL_LOG_TAG, "V%d ADC%d ATTEN%d PARAM%d -> %d", version, adc_num + 1, atten, ex… in esp_efuse_rtc_table_get_tag()
|
/hal_espressif-3.7.0/components/bootloader/ |
D | Kconfig.projbuild | 274 … This option prevents rollback to previous firmware/application image with lower security version. 277 int "eFuse secure version of app" 281 The secure version is the sequence number stored in the header of each firmware. 282 The security version is set in the bootloader, version is recorded in the eFuse field 284 … for storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option). 287 a security version greater or equal that recorded in eFuse field. 288 The app is booted with a higher (or equal) secure version. 290 The security version is worth increasing if in previous versions there is 296 int "Size of the efuse secure version field" 305 The size of the efuse secure version field. [all …]
|
/hal_espressif-3.7.0/components/spi_flash/sim/stubs/esp_app_format/include/ |
D | esp_app_desc.h | 30 uint32_t secure_version; /*!< Secure version */ 32 char version[32]; /*!< Application version */ member 36 char idf_ver[32]; /*!< Version IDF */
|
/hal_espressif-3.7.0/components/esp_app_format/ |
D | esp_app_desc.c | 14 // Application version info 18 .version = "", 20 .version = PROJECT_VER, 47 …tic_assert(sizeof(PROJECT_VER) <= sizeof(esp_app_desc.version), "PROJECT_VER is longer than versio…
|
/hal_espressif-3.7.0/components/bt/host/bluedroid/external/sbc/decoder/srce/ |
D | oi_codec_version.c | 6 * Licensed under the Apache License, Version 2.0 (the "License"); 23 version number of the eSBC codec 41 /** Version string for the BLUEmagic 3.0 protocol stack and profiles */ 44 " (Evaluation version)" 48 /** This function returns the version string for the BLUEmagic 3.0 protocol stack
|
/hal_espressif-3.7.0/components/wpa_supplicant/src/eap_server/ |
D | eap_server_methods.c | 62 * @version: Version of the EAP server method interface (set to 72 struct eap_method * eap_server_method_alloc(int version, int vendor, in eap_server_method_alloc() argument 80 eap->version = version; in eap_server_method_alloc() 113 method->version != EAP_SERVER_METHOD_INTERFACE_VERSION) { in eap_server_method_register()
|