1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
43
44
47
53
54
58
59
60
61
69
70
71
72
73
/* ... */
#pragma once
#include <stdbool.h>
#include <stdint.h>
#include "sdkconfig.h"
#include "esp_bit_defs.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
typedef enum {
CHIP_ESP32 = 1,
CHIP_ESP32S2 = 2,
CHIP_ESP32S3 = 9,
CHIP_ESP32C3 = 5,
CHIP_ESP32C2 = 12,
CHIP_ESP32C6 = 13,
CHIP_ESP32H2 = 16,
CHIP_ESP32P4 = 18,
CHIP_ESP32C61= 20,
CHIP_ESP32C5 = 23,
CHIP_POSIX_LINUX = 999,
}{ ... } esp_chip_model_t;
#define CHIP_FEATURE_EMB_FLASH BIT(0)
#define CHIP_FEATURE_WIFI_BGN BIT(1)
#define CHIP_FEATURE_BLE BIT(4)
#define CHIP_FEATURE_BT BIT(5)
#define CHIP_FEATURE_IEEE802154 BIT(6)
#define CHIP_FEATURE_EMB_PSRAM BIT(7) 6 defines
/* ... */
typedef struct {
esp_chip_model_t model;
uint32_t features;
uint16_t revision;
uint8_t cores;
}{ ... } esp_chip_info_t;
/* ... */
void esp_chip_info(esp_chip_info_t* out_info);
#if CONFIG_ESP32_ECO3_CACHE_LOCK_FIX
/* ... */
bool soc_has_cache_lock_bug(void);/* ... */
#endif
#ifdef __cplusplus
}{...}
#endif