mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
63 lines
1.5 KiB
C
63 lines
1.5 KiB
C
/**
|
|
* Native CPU configuration
|
|
*
|
|
* Copyright (C) 2013 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
|
*
|
|
* 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 arch
|
|
* @{
|
|
* @file
|
|
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
|
* @}
|
|
*/
|
|
#ifndef CPUCONF_H_
|
|
#define CPUCONF_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief CPU specific default stack sizes
|
|
*
|
|
* TODO: tighten stack sizes
|
|
*
|
|
* @{
|
|
*/
|
|
#ifdef __MACH__ /* OSX */
|
|
#define THREAD_STACKSIZE_DEFAULT (163840)
|
|
#define THREAD_STACKSIZE_IDLE (163840)
|
|
#define THREAD_EXTRA_STACKSIZE_PRINTF (81920)
|
|
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (81920)
|
|
/* for core/include/thread.h */
|
|
#define THREAD_STACKSIZE_MINIMUM (163840)
|
|
/* native internal */
|
|
#define THREAD_STACKSIZE_MINIMUM (163840)
|
|
#define ISR_STACKSIZE (163840)
|
|
|
|
#else /* Linux etc. */
|
|
#define THREAD_STACKSIZE_DEFAULT (8192)
|
|
#define THREAD_STACKSIZE_IDLE (8192)
|
|
#define THREAD_EXTRA_STACKSIZE_PRINTF (4096)
|
|
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (4096)
|
|
/* for core/include/thread.h */
|
|
#define THREAD_STACKSIZE_MINIMUM (8192)
|
|
/* native internal */
|
|
#define ISR_STACKSIZE (8192)
|
|
#endif /* OS */
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief Native internal Ethernet protocol number
|
|
*/
|
|
#define NATIVE_ETH_PROTO 0x1234
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* CPUCONF_H_ */
|