2013-11-28 12:57:41 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Milan Babel <babel@inf.fu-berlin.de>
|
2013-05-28 10:10:45 +02:00
|
|
|
*
|
2013-11-28 12:57:41 +01:00
|
|
|
* This source code is licensed under the GNU Lesser General Public License,
|
|
|
|
* Version 2. See the file LICENSE for more details.
|
|
|
|
*/
|
2013-05-28 10:10:45 +02:00
|
|
|
|
|
|
|
/**
|
2013-11-28 12:57:41 +01:00
|
|
|
* @defgroup boards_wsn430-v1_3b WSN430 v1.3b
|
|
|
|
* @ingroup boards
|
|
|
|
* @brief Support for the Senslab WSN430 v1.3b board
|
|
|
|
*
|
|
|
|
* <h2>Compontents</h2>
|
|
|
|
* \li MSP430
|
|
|
|
* \li CC1100
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file board.h
|
|
|
|
* @brief Basic definitions for the Senslab WSN430 v1.3b board
|
2013-05-28 10:10:45 +02:00
|
|
|
*
|
|
|
|
* @author Freie Universität Berlin, Computer Systems & Telematics, FeuerWhere project
|
|
|
|
* @author Milan Babel <babel@inf.fu-berlin.de>
|
|
|
|
*/
|
2013-05-25 12:34:18 +02:00
|
|
|
|
2013-11-28 12:57:41 +01:00
|
|
|
#ifndef _WSN_BOARD_H
|
|
|
|
#define _WSN_BOARD_H
|
|
|
|
|
2013-10-28 23:01:45 +01:00
|
|
|
#include "board-conf.h"
|
|
|
|
|
2013-12-09 11:49:00 +01:00
|
|
|
// for correct inclusion of <msp430.h>
|
|
|
|
#ifndef __MSP430F1611__
|
|
|
|
#define __MSP430F1611__
|
|
|
|
#endif
|
|
|
|
|
2013-05-25 12:34:18 +02:00
|
|
|
//MSB430 core
|
|
|
|
#define MSP430_INITIAL_CPU_SPEED 800000uL
|
2013-12-20 13:12:51 +01:00
|
|
|
#define F_CPU MSP430_INITIAL_CPU_SPEED
|
|
|
|
#define F_RC_OSCILLATOR 32768
|
2013-05-25 12:34:18 +02:00
|
|
|
#define MSP430_HAS_DCOR 0
|
|
|
|
#define MSP430_HAS_EXTERNAL_CRYSTAL 1
|
|
|
|
|
|
|
|
/* LEDs ports MSB430 */
|
|
|
|
#define LEDS_PxDIR P5DIR
|
|
|
|
#define LEDS_PxOUT P5OUT
|
|
|
|
#define LEDS_CONF_RED 0x04
|
|
|
|
#define LEDS_CONF_GREEN 0x05
|
|
|
|
#define LEDS_CONF_BLUE 0x06
|
|
|
|
|
|
|
|
#define LED_RED_ON LEDS_PxOUT &=~LEDS_CONF_RED
|
|
|
|
#define LED_RED_OFF LEDS_PxOUT |= LEDS_CONF_RED
|
|
|
|
#define LED_RED_TOGGLE LEDS_PxOUT ^= LEDS_CONF_RED
|
|
|
|
|
|
|
|
#define LED_GREEN_ON LEDS_PxOUT &=~LEDS_CONF_GREEN
|
|
|
|
#define LED_GREEN_OFF LEDS_PxOUT |= LEDS_CONF_GREEN
|
|
|
|
#define LED_GREEN_TOGGLE LEDS_PxOUT ^= LEDS_CONF_GREEN
|
|
|
|
|
|
|
|
#define LED_BLUE_ON LEDS_PxOUT &=~LEDS_CONF_BLUE
|
|
|
|
#define LED_BLUE_OFF LEDS_PxOUT |= LEDS_CONF_BLUE
|
|
|
|
#define LED_BLUE_TOGGLE LEDS_PxOUT ^= LEDS_CONF_BLUE
|
|
|
|
|
|
|
|
#include <msp430x16x.h>
|
|
|
|
|
2013-10-20 17:54:31 +02:00
|
|
|
typedef uint8_t radio_packet_length_t;
|
|
|
|
|
2013-05-25 12:34:18 +02:00
|
|
|
/** @} */
|
2013-05-28 10:10:45 +02:00
|
|
|
#endif // _WSN_BOARD_H
|