sdkconfig_default_esp32.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2024 Gunar Schorcht
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
9 #pragma once
10 
21 #ifndef DOXYGEN
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26 
27 #ifndef CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ
28 # define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160
29 #endif
30 
31 #define CONFIG_XTAL_FREQ 40
32 
33 #define CONFIG_ESP_DEBUG_OCDAWARE 1
34 
35 #define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x1000
36 #define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1
37 #define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1
38 #define CONFIG_EFUSE_MAX_BLK_LEN 192
39 #define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000
40 #define CONFIG_MMU_PAGE_SIZE 0x10000
41 
42 #define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1
43 
44 #define CONFIG_ESP_INT_WDT 1
45 #define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300
46 #define CONFIG_ESP_INT_WDT_CHECK_CPU 1
47 
48 #ifdef __cplusplus
49 }
50 #endif
51 
52 #endif /* DOXYGEN */