/* * Copyright 2009, 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. */ /** * @defgroup boards_msb430 MSB-430 * @ingroup boards * @brief Support for the ScatterWeb MSB-430 board * * @details * See * http://www.mi.fu-berlin.de/inf/groups/ag-tech/projects/Z_Finished_Projects/ScatterWeb/modules/mod_MSB-430.html * for circuit diagram etc. * *

Components

* \li MSP430 * \li CC1020 * \li SHT11 * \li MMA7260Q * \li LED * * @{ * * @file * @brief Central definitions for the ScatterWeb MSB-430 board * * @author Freie Universität Berlin, Computer Systems & Telematics, FeuerWhere project */ #ifndef BOARD_H #define BOARD_H #include "board_common.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Define the CPU model for the */ #ifndef __MSP430F1612__ #define __MSP430F1612__ #endif /** * @name CPU core configuration * @{ */ /** @todo Move this to the periph_conf.h */ #define MSP430_INITIAL_CPU_SPEED 2457600uL #define F_CPU MSP430_INITIAL_CPU_SPEED #define F_RC_OSCILLATOR 32768 #define MSP430_HAS_DCOR 1 #define MSP430_HAS_EXTERNAL_CRYSTAL 0 /** @} */ #ifdef __cplusplus } #endif /** @} */ #endif /* BOARD_H */