ESP-IDF
Select one of the symbols to view example projects that use it.
Symbol previews are coming soon...
Outline
#include <stdint.h>
#include "sdkconfig.h"
#include "bootloader_common.h"
#include "hal/efuse_ll.h"
#include "hal/efuse_hal.h"
#include "esp_attr.h"
bootloader_common_get_chip_ver_pkg()
bootloader_clock_get_rated_freq_mhz()
Files
loading...
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
components/bootloader_support/src/bootloader_efuse.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ... */
#include
<
stdint.h>
#include
"
sdkconfig.h"
#include
"
bootloader_common.h"
#include
"
hal
/
efuse_ll.h"
#include
"
hal
/
efuse_hal.h"
#include
"
esp_attr.h"
6 includes
IRAM_ATTR
uint32_t
bootloader_common_get_chip_ver_pkg
(
void
)
{
return
efuse_ll_get_chip_ver_pkg
(
)
;
}
{ ... }
int
bootloader_clock_get_rated_freq_mhz
(
void
)
{
#ifdef
CONFIG_IDF_TARGET_ESP32
return
efuse_hal_get_rated_freq_mhz
(
)
;
/* ... */
#elif
CONFIG_IDF_TARGET_ESP32C2
return
120
;
/* ... */
#elif
CONFIG_IDF_TARGET_ESP32C3
return
160
;
/* ... */
#elif
CONFIG_IDF_TARGET_ESP32C6
return
160
;
/* ... */
#elif
CONFIG_IDF_TARGET_ESP32C61
return
160
;
/* ... */
#elif
CONFIG_IDF_TARGET_ESP32C5
return
160
;
/* ... */
#elif
CONFIG_IDF_TARGET_ESP32H2
//IDF-6570
return
96
;
/* ... */
#elif
CONFIG_IDF_TARGET_ESP32P4
return
400
;
/* ... */
#elif
CONFIG_IDF_TARGET_ESP32S2
return
240
;
/* ... */
#elif
CONFIG_IDF_TARGET_ESP32S3
return
240
;
/* ... */
#endif
}
{ ... }
Details
Show:
from
Types:
Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.
bootloader_common_get_chip_ver_pkg()
efuse_ll_get_chip_ver_pkg()
efuse_hal_get_rated_freq_mhz()
bootloader_clock_get_rated_freq_mhz()
IRAM_ATTR