2014-02-27 12:48:30 +01:00
|
|
|
/*
|
|
|
|
* board.h - Zolertia Z1 Board.
|
|
|
|
* Copyright (C) 2014 INRIA
|
|
|
|
*
|
2014-08-23 15:43:13 +02:00
|
|
|
* 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.
|
2014-02-27 12:48:30 +01:00
|
|
|
*/
|
|
|
|
|
2015-04-23 05:00:54 +02:00
|
|
|
#ifndef Z1_BOARD_H_
|
|
|
|
#define Z1_BOARD_H_
|
2014-02-27 12:48:30 +01:00
|
|
|
|
|
|
|
/**
|
2015-02-12 13:59:25 +01:00
|
|
|
* @defgroup boards_z1 Zolertia Z1
|
2014-05-16 21:39:45 +02:00
|
|
|
* @ingroup boards
|
2014-05-24 15:03:06 +02:00
|
|
|
* @brief Support for the Zolertia Z1 board.
|
2014-02-27 12:48:30 +01:00
|
|
|
*
|
|
|
|
<h2>Components</h2>
|
|
|
|
\li MSP430F2617
|
|
|
|
\li CC2420
|
|
|
|
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Zolertia Z1 board configuration
|
|
|
|
*
|
|
|
|
* @author Kévin Roussel <Kevin.Roussel@inria.fr>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-02-27 12:48:30 +01:00
|
|
|
#ifndef __MSP430F2617__
|
|
|
|
#define __MSP430F2617__
|
|
|
|
#endif
|
|
|
|
|
2015-05-26 19:42:44 +02:00
|
|
|
/* MSP430 core */
|
2014-02-27 12:48:30 +01:00
|
|
|
#define MSP430_INITIAL_CPU_SPEED 8000000uL
|
|
|
|
#ifndef F_CPU
|
|
|
|
#define F_CPU MSP430_INITIAL_CPU_SPEED
|
|
|
|
#endif
|
|
|
|
#define F_RC_OSCILLATOR 32768
|
|
|
|
#define MSP430_HAS_DCOR 0
|
|
|
|
#define MSP430_HAS_EXTERNAL_CRYSTAL 1
|
|
|
|
|
2015-05-26 19:42:44 +02:00
|
|
|
/* LEDs ports */
|
2014-02-27 12:48:30 +01:00
|
|
|
#define LEDS_PxDIR P5DIR
|
|
|
|
#define LEDS_PxOUT P5OUT
|
|
|
|
#define LEDS_CONF_RED 0x10
|
|
|
|
#define LEDS_CONF_BLUE 0x20
|
|
|
|
#define LEDS_CONF_GREEN 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
|
|
|
|
|
|
|
|
|
2015-05-26 19:42:44 +02:00
|
|
|
/* User-button port */
|
2014-02-27 12:48:30 +01:00
|
|
|
#define USER_BTN_PxIN P2IN
|
|
|
|
#define USER_BTN_MASK 0x20
|
|
|
|
|
|
|
|
#define USER_BTN_PRESSED ((USER_BTN_PxIN & USER_BTN_MASK) == 0)
|
|
|
|
#define USER_BTN_RELEASED ((USER_BTN_PxIN & USER_BTN_MASK) != 0)
|
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-27 12:48:30 +01:00
|
|
|
/** @} */
|
2015-05-26 19:42:44 +02:00
|
|
|
#endif /* Z1_BOARD_H_ */
|