board/telosb: added (x)timer configuration

This commit is contained in:
Hauke Petersen 2015-08-26 18:45:26 +02:00
parent 929a38c319
commit a053716e4b
3 changed files with 40 additions and 4 deletions

View File

@ -1 +1,2 @@
FEATURES_PROVIDED += periph_timer
FEATURES_MCU_GROUP = msp430

View File

@ -1,5 +1,6 @@
/*
* Copyright (C) 2013, 2014 INRIA
* 2015 Freie Universität Berlin
*
* 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
@ -21,6 +22,7 @@
* @brief Basic definitions for the TelosB board
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifndef TELOSB_BOARD_H_
@ -35,6 +37,21 @@ extern "C" {
#define __MSP430F1611__
#endif
/**
* @brief Xtimer configuration
* @{
*/
#define XTIMER (0)
#define XTIMER_CHAN (0)
#define XTIMER_MASK (0xffff0000)
/** @} */
/**
* @brief Defines for compatibility with hwtimer
* @deprecated
*/
#define HW_TIMER (0)
/* TelosB core */
#define MSP430_INITIAL_CPU_SPEED 2457600uL
#define F_CPU MSP430_INITIAL_CPU_SPEED

View File

@ -1,5 +1,6 @@
/*
* Copyright (C) 2014 INRIA
* 2015 Freie Universität Berlin
*
* 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
@ -14,11 +15,28 @@
* @brief TelosB peripheral configuration
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifndef PERIPH_CONF_H_
#define PERIPH_CONF_H_
#ifndef PERIPH_CONF_H
#define PERIPH_CONF_H
/* make Travis happy: #ifdef __cplusplus extern "C" { #endif */
#ifdef __cplusplus
extern "C" {
#endif
#endif /* PERIPH_CONF_H_ */
/**
* @brief Timer configuration
* @{
*/
#define TIMER_DEV (TIMER_A)
#define TIMER_CHAN (3)
#define TIMER_ISR_CC0 (TIMERA0_VECTOR)
#define TIMER_ISR_CCX (TIMERA1_VECTOR)
/** @} */
#ifdef __cplusplus
}
#endif
#endif /* PERIPH_CONF_H */