From a052f5515f0c42f06a17e961ecd364d21dddc76b Mon Sep 17 00:00:00 2001
From: Hauke Petersen <hauke.petersen@fu-berlin.de>
Date: Thu, 3 Sep 2015 23:48:14 +0200
Subject: [PATCH] boards/msba2: added periph timer configuration

---
 boards/msba2/Makefile.features     |  1 +
 boards/msba2/include/board.h       |  5 +++++
 boards/msba2/include/periph_conf.h | 16 ++++++++++++++++
 3 files changed, 22 insertions(+)

diff --git a/boards/msba2/Makefile.features b/boards/msba2/Makefile.features
index f1261a22a4..420a36e116 100644
--- a/boards/msba2/Makefile.features
+++ b/boards/msba2/Makefile.features
@@ -2,6 +2,7 @@ FEATURES_PROVIDED += periph_gpio
 FEATURES_PROVIDED += periph_pwm
 FEATURES_PROVIDED += periph_rtc
 FEATURES_PROVIDED += periph_spi
+FEATURES_PROVIDED += periph_timer
 FEATURES_PROVIDED += cpp
 FEATURES_PROVIDED += config
 FEATURES_MCU_GROUP = arm7
diff --git a/boards/msba2/include/board.h b/boards/msba2/include/board.h
index 8b9d6e09b6..2b1102d0c0 100644
--- a/boards/msba2/include/board.h
+++ b/boards/msba2/include/board.h
@@ -53,6 +53,11 @@ extern "C" {
 #define STDIO_RX_BUFSIZE    (64U)
 /** @} */
 
+/**
+ * @brief Deprecated HW_TIMER definition (to be removed)
+ */
+#define HW_TIMER             TIMER_DEV(0)
+
 /**
  * @brief initialize the board's clock system
  */
diff --git a/boards/msba2/include/periph_conf.h b/boards/msba2/include/periph_conf.h
index d5c61c1d79..8789c55a78 100644
--- a/boards/msba2/include/periph_conf.h
+++ b/boards/msba2/include/periph_conf.h
@@ -25,6 +25,22 @@
 extern "C" {
 #endif
 
+/**
+ * @brief   Clock configuration
+ * @{
+ */
+#define CLOCK_CORECLOCK     (72000000U)         /* the msba2 runs with 72MHz */
+
+#define CLOCK_PCLK          (CLOCK_CORECLOCK)
+/** @} */
+
+/**
+ * @brief   Timer configuration, select a number from 1 to 4
+ * @{
+ */
+#define TIMER_NUMOF         (1U)
+/** @} */
+
 /**
  * @brief PWM device and pinout configuration
  */
-- 
GitLab