2014-08-27 18:47:31 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013, Freie Universitaet Berlin (FUB). All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2010-09-22 15:10:42 +02:00
|
|
|
|
|
|
|
#ifndef CPUCONF_H_
|
|
|
|
#define CPUCONF_H_
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Kernel configuration
|
|
|
|
* @{
|
|
|
|
*/
|
2013-09-19 13:51:09 +02:00
|
|
|
#define KERNEL_CONF_STACKSIZE_PRINTF (256)
|
2013-11-21 20:41:28 +01:00
|
|
|
#define KERNEL_CONF_STACKSIZE_PRINTF_FLOAT (KERNEL_CONF_STACKSIZE_PRINTF)
|
2013-07-23 13:42:58 +02:00
|
|
|
|
2010-09-22 15:10:42 +02:00
|
|
|
#ifndef KERNEL_CONF_STACKSIZE_DEFAULT
|
2014-07-31 20:46:28 +02:00
|
|
|
#define KERNEL_CONF_STACKSIZE_DEFAULT (256)
|
2010-09-22 15:10:42 +02:00
|
|
|
#endif
|
|
|
|
|
2013-12-16 11:22:42 +01:00
|
|
|
#define KERNEL_CONF_STACKSIZE_IDLE (96)
|
|
|
|
#define MSP430_ISR_STACK_SIZE (256)
|
2010-12-03 18:42:03 +01:00
|
|
|
|
2010-12-10 18:00:31 +01:00
|
|
|
#define RX_BUF_SIZE (3)
|
|
|
|
#define TRANSCEIVER_BUFFER_SIZE (3)
|
2013-12-19 16:48:31 +01:00
|
|
|
|
|
|
|
#ifndef UART0_BUFSIZE
|
|
|
|
#define UART0_BUFSIZE (32)
|
|
|
|
#endif
|
2010-09-22 15:10:42 +02:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#endif /* CPUCONF_H_ */
|