mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 08:52:45 +01:00
52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
|
/*
|
||
|
* Copyright (C) 2022 Gunar Schorcht
|
||
|
*
|
||
|
* This file is subject to the terms and conditions of the GNU Lesser
|
||
|
* General Public License v2.1. See the file LICENSE in the top level
|
||
|
* directory for more details.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @ingroup cpu_esp32
|
||
|
* @{
|
||
|
*
|
||
|
* @file
|
||
|
* @brief Default SDK configuration for all ESP32x SoC bootloaders
|
||
|
*
|
||
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
||
|
*/
|
||
|
|
||
|
#ifndef SDKCONFIG_DEFAULT_COMMON_H
|
||
|
#define SDKCONFIG_DEFAULT_COMMON_H
|
||
|
|
||
|
#ifndef DOXYGEN
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1
|
||
|
#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1
|
||
|
#define CONFIG_BOOTLOADER_WDT_ENABLE 1
|
||
|
#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000
|
||
|
#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0
|
||
|
#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1
|
||
|
|
||
|
#define CONFIG_ESP_CONSOLE_UART 1
|
||
|
|
||
|
#define CONFIG_LOG_DEFAULT_LEVEL 3
|
||
|
#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1
|
||
|
|
||
|
#define CONFIG_PARTITION_TABLE_OFFSET 0x8000
|
||
|
#define CONFIG_PARTITION_TABLE_MD5 1
|
||
|
|
||
|
#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* DOXYGEN */
|
||
|
#endif /* SDKCONFIG_DEFAULT_COMMON_H */
|
||
|
/** @} */
|