mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
51 lines
957 B
C
51 lines
957 B
C
|
/*
|
||
|
* Copyright (C) 2018 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 CPU specific configuration options
|
||
|
*
|
||
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
||
|
*/
|
||
|
|
||
|
#ifndef CPU_CONF_H
|
||
|
#define CPU_CONF_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "esp_common_log.h"
|
||
|
#include "xtensa_conf.h"
|
||
|
#include "xtensa/xtensa_context.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* @brief Stack size configuration
|
||
|
* @{
|
||
|
*/
|
||
|
#define THREAD_EXTRA_STACKSIZE_PRINTF (1024)
|
||
|
#define THREAD_STACKSIZE_DEFAULT (2048)
|
||
|
#define THREAD_STACKSIZE_IDLE (2048)
|
||
|
/** @} */
|
||
|
|
||
|
/**
|
||
|
* Buffer size used for printf functions (maximum length of formatted output).
|
||
|
*/
|
||
|
#define PRINTF_BUFSIZ 256
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* CPU_CONF_H */
|
||
|
|
||
|
#endif /* CPU_CONF_H */
|
||
|
/** @} */
|