2018-04-16 19:03:33 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Ken Rabold
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2018-04-16 22:35:32 +02:00
|
|
|
* @ingroup cpu_fe310
|
2018-04-16 19:03:33 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief CPU specific configuration options
|
|
|
|
*
|
|
|
|
* @author Ken Rabold
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CPU_CONF_H
|
|
|
|
#define CPU_CONF_H
|
|
|
|
|
2018-04-16 22:35:32 +02:00
|
|
|
/**
|
|
|
|
* @name Configuration of default stack sizes
|
|
|
|
* @{
|
|
|
|
*/
|
2018-04-16 19:03:33 +02:00
|
|
|
#ifndef THREAD_EXTRA_STACKSIZE_PRINTF
|
|
|
|
#define THREAD_EXTRA_STACKSIZE_PRINTF (256)
|
|
|
|
#endif
|
|
|
|
#ifndef THREAD_STACKSIZE_DEFAULT
|
|
|
|
#define THREAD_STACKSIZE_DEFAULT (1024)
|
|
|
|
#endif
|
|
|
|
#ifndef THREAD_STACKSIZE_IDLE
|
|
|
|
#define THREAD_STACKSIZE_IDLE (256)
|
|
|
|
#endif
|
2018-04-16 22:35:32 +02:00
|
|
|
/** @} */
|
2018-04-16 19:03:33 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CPU_CONF_H */
|
|
|
|
/** @} */
|