Searched refs:app_desc (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-latest/components/esp_system/ |
D | startup.c | 458 const esp_app_desc_t *app_desc = esp_app_get_description(); in start_cpu0_default() local 461 ESP_EARLY_LOGI(TAG, "Project name: %s", app_desc->project_name); in start_cpu0_default() 464 ESP_EARLY_LOGI(TAG, "App version: %s", app_desc->version); in start_cpu0_default() 467 ESP_EARLY_LOGI(TAG, "Secure version: %d", app_desc->secure_version); in start_cpu0_default() 470 ESP_EARLY_LOGI(TAG, "Compile time: %s %s", app_desc->date, app_desc->time); in start_cpu0_default() 475 ESP_EARLY_LOGI(TAG, "ESP-IDF: %s", app_desc->idf_ver); in start_cpu0_default()
|
/hal_espressif-latest/components/bootloader_support/src/ |
D | bootloader_utility.c | 131 …er_common_get_partition_description(const esp_partition_pos_t *partition, esp_app_desc_t *app_desc) in bootloader_common_get_partition_description() argument 133 if (partition == NULL || app_desc == NULL || partition->offset == 0) { in bootloader_common_get_partition_description() 145 memcpy(app_desc, image + app_desc_offset, sizeof(esp_app_desc_t)); in bootloader_common_get_partition_description() 148 if (app_desc->magic_word != ESP_APP_DESC_MAGIC_WORD) { in bootloader_common_get_partition_description() 301 esp_app_desc_t app_desc = {}; in check_anti_rollback() local 302 esp_err_t err = bootloader_common_get_partition_description(partition, &app_desc); in check_anti_rollback() 307 bool sec_ver = esp_efuse_check_secure_version(app_desc.secure_version); in check_anti_rollback() 309 ESP_FAULT_ASSERT(sec_ver == esp_efuse_check_secure_version(app_desc.secure_version)); in check_anti_rollback() 319 esp_app_desc_t app_desc; in update_anti_rollback() local 320 esp_err_t err = bootloader_common_get_partition_description(partition, &app_desc); in update_anti_rollback() [all …]
|
/hal_espressif-latest/tools/esptool_py/esptool/ |
D | cmds.py | 868 app_desc = None 874 app_desc = seg.data[:256] 911 if app_desc: 924 ) = struct.unpack(APP_DESC_STRUCT_FMT, app_desc)
|