2014-10-22 15:49:49 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 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
|
|
|
|
* details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2016-01-21 22:47:57 +01:00
|
|
|
* @ingroup boards_openmote-cc2538
|
2014-10-22 15:49:49 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2016-01-21 22:47:57 +01:00
|
|
|
* @brief Peripheral MCU configuration for the OpenMote-cc2538 board
|
2014-10-22 15:49:49 +02:00
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef PERIPH_CONF_H
|
|
|
|
#define PERIPH_CONF_H
|
2014-10-22 15:49:49 +02:00
|
|
|
|
2016-03-03 17:04:39 +01:00
|
|
|
#include "cc2538_gpio.h"
|
|
|
|
#include "periph_cpu.h"
|
|
|
|
|
2014-10-22 15:49:49 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Clock system configuration
|
|
|
|
* @{
|
|
|
|
*/
|
2016-11-08 18:17:17 +01:00
|
|
|
#define CLOCK_CORECLOCK (32000000U) /* desired core clock frequency, 32MHz */
|
2014-10-22 15:49:49 +02:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Timer configuration
|
|
|
|
* @{
|
|
|
|
*/
|
2016-08-16 21:07:26 +02:00
|
|
|
static const timer_conf_t timer_config[] = {
|
|
|
|
{
|
|
|
|
.dev = GPTIMER0,
|
|
|
|
.channels = 2,
|
|
|
|
.cfg = GPTMCFG_16_BIT_TIMER, /* required for XTIMER */
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.dev = GPTIMER1,
|
|
|
|
.channels = 1,
|
|
|
|
.cfg = GPTMCFG_32_BIT_TIMER,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.dev = GPTIMER2,
|
|
|
|
.channels = 1,
|
|
|
|
.cfg = GPTMCFG_32_BIT_TIMER,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.dev = GPTIMER3,
|
|
|
|
.channels = 1,
|
|
|
|
.cfg = GPTMCFG_32_BIT_TIMER,
|
|
|
|
},
|
|
|
|
};
|
2014-10-22 15:49:49 +02:00
|
|
|
|
2016-08-16 21:07:26 +02:00
|
|
|
#define TIMER_NUMOF (sizeof(timer_config) / sizeof(timer_config[0]))
|
|
|
|
#define TIMER_IRQ_PRIO 1
|
2014-10-22 15:49:49 +02:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name UART configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define UART_NUMOF (1U)
|
|
|
|
#define UART_0_EN 1
|
|
|
|
#define UART_IRQ_PRIO 1
|
|
|
|
|
|
|
|
/* UART 0 device configuration */
|
|
|
|
#define UART_0_DEV UART0
|
|
|
|
#define UART_0_IRQ UART0_IRQn
|
|
|
|
#define UART_0_ISR isr_uart0
|
|
|
|
/* UART 0 pin configuration */
|
|
|
|
#define UART_0_TX_PIN GPIO_PA1
|
|
|
|
#define UART_0_RX_PIN GPIO_PA0
|
|
|
|
/** @} */
|
|
|
|
|
2016-03-03 17:04:39 +01:00
|
|
|
/**
|
|
|
|
* @name I2C configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define I2C_NUMOF 1
|
|
|
|
#define I2C_0_EN 1
|
|
|
|
#define I2C_IRQ_PRIO 1
|
|
|
|
|
|
|
|
/* I2C 0 device configuration */
|
|
|
|
#define I2C_0_DEV 0
|
|
|
|
#define I2C_0_IRQ I2C_IRQn
|
|
|
|
#define I2C_0_IRQ_HANDLER isr_i2c
|
|
|
|
#define I2C_0_SCL_PIN GPIO_PB3 /* OpenBattery */
|
|
|
|
#define I2C_0_SDA_PIN GPIO_PB4 /* OpenBattery */
|
|
|
|
|
|
|
|
static const i2c_conf_t i2c_config[I2C_NUMOF] = {
|
|
|
|
{
|
|
|
|
.scl_pin = GPIO_PB3, /* OpenBattery */
|
|
|
|
.sda_pin = GPIO_PB4, /* OpenBattery */
|
|
|
|
},
|
|
|
|
};
|
|
|
|
/** @} */
|
|
|
|
|
2016-11-08 18:17:17 +01:00
|
|
|
/**
|
|
|
|
* @brief Pre-calculated clock divider values based on a CLOCK_CORECLOCK (32MHz)
|
|
|
|
*
|
|
|
|
* Calculated with (CPSR * (SCR + 1)) = (CLOCK_CORECLOCK / bus_freq), where
|
2017-01-18 17:52:31 +01:00
|
|
|
* 1 < CPSR < 255 and
|
|
|
|
* 0 < SCR < 256
|
2016-11-08 18:17:17 +01:00
|
|
|
*/
|
|
|
|
static const spi_clk_conf_t spi_clk_config[] = {
|
|
|
|
{ .cpsr = 10, .scr = 31 }, /* 100khz */
|
2017-01-18 17:52:31 +01:00
|
|
|
{ .cpsr = 2, .scr = 39 }, /* 400khz */
|
|
|
|
{ .cpsr = 2, .scr = 15 }, /* 1MHz */
|
|
|
|
{ .cpsr = 2, .scr = 2 }, /* ~4.5MHz */
|
|
|
|
{ .cpsr = 2, .scr = 1 } /* ~10.7MHz */
|
2016-11-08 18:17:17 +01:00
|
|
|
};
|
|
|
|
|
2015-09-17 21:11:42 +02:00
|
|
|
/**
|
|
|
|
* @name SPI configuration
|
|
|
|
* @{
|
|
|
|
*/
|
2016-11-08 18:17:17 +01:00
|
|
|
static const spi_conf_t spi_config[] = {
|
2015-09-17 21:11:42 +02:00
|
|
|
{
|
|
|
|
.dev = SSI0,
|
|
|
|
.mosi_pin = GPIO_PA5,
|
|
|
|
.miso_pin = GPIO_PA4,
|
|
|
|
.sck_pin = GPIO_PA2,
|
|
|
|
.cs_pin = GPIO_PA3,
|
|
|
|
},
|
|
|
|
};
|
2016-11-08 18:17:17 +01:00
|
|
|
|
|
|
|
#define SPI_NUMOF (sizeof(spi_config) / sizeof(spi_config[0]))
|
2014-10-22 15:49:49 +02:00
|
|
|
/** @} */
|
|
|
|
|
2016-07-08 03:59:20 +02:00
|
|
|
/**
|
|
|
|
* @name Radio peripheral configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define RADIO_IRQ_PRIO 1
|
|
|
|
/** @} */
|
|
|
|
|
2014-10-22 15:49:49 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* end extern "C" */
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* PERIPH_CONF_H */
|
2014-10-22 15:49:49 +02:00
|
|
|
/** @} */
|