mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-16 18:13:49 +01:00
46 lines
882 B
C
46 lines
882 B
C
/*
|
|
* SPDX-FileCopyrightText: 2022 Gunar Schorcht
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @ingroup cpu_esp32
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Default SDK configuration for all ESP32x SoC bootloaders
|
|
*
|
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
|
*/
|
|
|
|
#ifndef DOXYGEN
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 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 */
|
|
/** @} */
|