sdkconfig_default_common.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2022 Gunar Schorcht
3  * SPDX-License-Identifier: LGPL-2.1-only
4  */
5 
6 #pragma once
7 
18 #ifndef DOXYGEN
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 #define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1
25 #define CONFIG_BOOTLOADER_WDT_ENABLE 1
26 #define CONFIG_BOOTLOADER_WDT_TIME_MS 9000
27 #define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0
28 #define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1
29 
30 #define CONFIG_ESP_CONSOLE_UART 1
31 
32 #define CONFIG_LOG_DEFAULT_LEVEL 3
33 #define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1
34 
35 #define CONFIG_PARTITION_TABLE_OFFSET 0x8000
36 #define CONFIG_PARTITION_TABLE_MD5 1
37 
38 #define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1
39 
40 #ifdef __cplusplus
41 }
42 #endif
43 
44 #endif /* DOXYGEN */