2010-09-22 15:10:42 +02:00
|
|
|
/******************************************************************************
|
2013-06-18 17:21:38 +02:00
|
|
|
Copyright (C) 2013, Freie Universitaet Berlin (FUB). All rights reserved.
|
2010-09-22 15:10:42 +02:00
|
|
|
|
|
|
|
These sources were developed at the Freie Universitaet Berlin, Computer Systems
|
|
|
|
and Telematics group (http://cst.mi.fu-berlin.de).
|
|
|
|
-------------------------------------------------------------------------------
|
2013-03-07 20:51:26 +01:00
|
|
|
This file is part of RIOT.
|
2010-09-22 15:10:42 +02:00
|
|
|
|
2013-06-18 17:21:38 +02:00
|
|
|
This file subject to the terms and conditions of the GNU Lesser General Public
|
|
|
|
License. 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
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#ifndef KERNEL_CONF_STACKSIZE_DEFAULT
|
|
|
|
#define KERNEL_CONF_STACKSIZE_DEFAULT 1024
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define KERNEL_CONF_STACKSIZE_IDLE 64
|
|
|
|
#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)
|
2010-09-22 15:10:42 +02:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#endif /* CPUCONF_H_ */
|