Select one of the symbols to view example projects that use it.
 
Outline
#include <assert.h>
#include <sys/param.h>
#include "esp_ota_ops.h"
#include "esp_attr.h"
#include "sdkconfig.h"
esp_ota_get_app_description()
esp_ota_get_app_elf_sha256(char *, size_t)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/app_update/esp_ota_app_desc.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <assert.h> #include <sys/param.h> #include "esp_ota_ops.h" #include "esp_attr.h" #include "sdkconfig.h"5 includes const esp_app_desc_t *esp_ota_get_app_description(void) { return esp_app_get_description(); }{ ... } int esp_ota_get_app_elf_sha256(char* dst, size_t size) { return esp_app_get_elf_sha256(dst, size); }{ ... }
Details
Show:
from
Types: Columns: