2014-10-13 15:29:49 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Loci Controls Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-02-12 13:35:53 +01:00
|
|
|
* @ingroup boards_cc2538dk
|
2014-10-13 15:29:49 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Peripheral MCU configuration for the CC2538DK board
|
|
|
|
*
|
|
|
|
* @author Ian Martin <ian@locicontrols.com>
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef PERIPH_CONF_H
|
|
|
|
#define PERIPH_CONF_H
|
2014-10-13 15:29:49 +02:00
|
|
|
|
2015-12-18 12:04:53 +01:00
|
|
|
#include "cpu.h"
|
2016-03-03 17:04:39 +01:00
|
|
|
#include "periph_cpu.h"
|
2014-10-13 15:29:49 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Timer peripheral 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-13 15:29:49 +02:00
|
|
|
|
2016-08-16 21:07:26 +02:00
|
|
|
#define TIMER_NUMOF (sizeof(timer_config) / sizeof(timer_config[0]))
|
2014-10-13 15:29:49 +02:00
|
|
|
|
2016-08-16 21:07:26 +02:00
|
|
|
#define TIMER_IRQ_PRIO 1
|
2014-10-13 15:29:49 +02:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name UART configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define UART_NUMOF 1
|
|
|
|
|
|
|
|
#define UART_0_EN 1
|
|
|
|
#define UART_1_EN 0
|
|
|
|
#define UART_2_EN 0
|
|
|
|
#define UART_3_EN 0
|
|
|
|
|
|
|
|
#define UART_IRQ_PRIO 1
|
|
|
|
|
|
|
|
/* UART 0 device configuration */
|
|
|
|
#define UART_0_DEV UART0
|
|
|
|
#define UART_0_IRQ UART0_IRQn
|
2014-10-24 13:59:21 +02:00
|
|
|
#define UART_0_ISR isr_uart0
|
2014-10-13 15:29:49 +02:00
|
|
|
/* UART 0 pin configuration */
|
|
|
|
#define UART_0_TX_PIN GPIO_PA1
|
|
|
|
#define UART_0_RX_PIN GPIO_PA0
|
2016-04-14 12:10:59 +02:00
|
|
|
#define UART_0_RTS_PIN GPIO_PD3
|
|
|
|
#define UART_0_CTS_PIN GPIO_PB0
|
2014-10-13 15:29:49 +02:00
|
|
|
|
|
|
|
/* UART 1 device configuration */
|
|
|
|
#define UART_1_DEV UART1
|
|
|
|
#define UART_1_IRQ UART1_IRQn
|
2014-10-24 13:59:21 +02:00
|
|
|
#define UART_1_ISR isr_uart1
|
2014-10-13 15:29:49 +02:00
|
|
|
/* UART 1 pin configuration */
|
|
|
|
/** @} */
|
|
|
|
|
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_PA2 /* SPI_SCK on the SmartRF06 baseboard */
|
|
|
|
#define I2C_0_SDA_PIN GPIO_PA4 /* SPI_MOSI on the SmartRF06 baseboard */
|
|
|
|
|
|
|
|
static const i2c_conf_t i2c_config[I2C_NUMOF] = {
|
|
|
|
{
|
|
|
|
.scl_pin = GPIO_PA2, /* SPI_SCK on the SmartRF06 baseboard */
|
|
|
|
.sda_pin = GPIO_PA4, /* SPI_MOSI on the SmartRF06 baseboard */
|
|
|
|
},
|
|
|
|
};
|
|
|
|
/** @} */
|
|
|
|
|
2015-09-17 21:11:42 +02:00
|
|
|
/**
|
|
|
|
* @name SPI configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define SPI_NUMOF 1
|
|
|
|
#define SPI_0_EN 1
|
|
|
|
|
|
|
|
static const periph_spi_conf_t spi_config[SPI_NUMOF] = {
|
|
|
|
{
|
|
|
|
.dev = SSI0,
|
|
|
|
.mosi_pin = GPIO_PA4,
|
|
|
|
.miso_pin = GPIO_PA5,
|
|
|
|
.sck_pin = GPIO_PA2,
|
|
|
|
.cs_pin = GPIO_PD0,
|
|
|
|
},
|
|
|
|
};
|
2014-10-13 15:29:49 +02:00
|
|
|
/** @} */
|
|
|
|
|
2016-07-08 04:17:55 +02:00
|
|
|
/**
|
|
|
|
* @name Radio peripheral configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define RADIO_IRQ_PRIO 1
|
|
|
|
/** @} */
|
|
|
|
|
2014-10-13 15:29:49 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* end extern "C" */
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* PERIPH_CONF_H */
|
2014-10-13 15:29:49 +02:00
|
|
|
/** @} */
|