1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/telosb/include/board.h

62 lines
1.3 KiB
C
Raw Normal View History

2013-08-19 18:58:45 +02:00
/**
* board.h - TelosB Board.
* Copyright (C) 2013 INRIA
*
* This source code is licensed under the GNU Lesser General Public License,
* Version 2. See the file LICENSE for more details.
*/
#ifndef _TELOSB_BOARD_H
#define _TELOSB_BOARD_H
/**
* @defgroup TelosB
* @ingroup TelosB
*
<h2>Compontents</h2>
\li MSP430
\li CC2420
* @{
*/
/**
* @file
* @brief TelosB Board
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
*
*/
//MSB430 core
#define MSP430_INITIAL_CPU_SPEED 8000000uL
2013-08-19 18:58:45 +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 0x10
#define LEDS_CONF_GREEN 0x20
#define LEDS_CONF_BLUE 0x40
#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 <stdint.h>
2013-08-19 18:58:45 +02:00
#include <msp430x16x.h>
2013-10-20 17:54:31 +02:00
typedef uint8_t radio_packet_length_t;
2013-08-19 18:58:45 +02:00
/** @} */
#endif // _TELOSB_BOARD_H