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
|
|
|
|
|
2020-03-19 16:16:50 +01:00
|
|
|
/**
|
|
|
|
* @name Clock system configuration
|
|
|
|
* @{
|
|
|
|
*/
|
2020-03-20 15:31:22 +01:00
|
|
|
/*
|
|
|
|
* 0: use internal 32KHz RCOSC
|
|
|
|
* 1: use external 32KHz XOSC
|
|
|
|
*/
|
|
|
|
#ifndef SYS_CTRL_OSC32K_USE_XTAL
|
|
|
|
#define SYS_CTRL_OSC32K_USE_XTAL (1)
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* 0: use internal 16MHz RCOSC
|
|
|
|
* 1: use external 32MHz XOSC, required for RF operation
|
|
|
|
*/
|
|
|
|
#ifndef SYS_CTRL_OSC_USE_XTAL
|
|
|
|
#define SYS_CTRL_OSC_USE_XTAL (1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SYS_CTRL_OSC_USE_XTAL
|
|
|
|
#define CLOCK_OSC (XOSC32M_FREQ)
|
|
|
|
#else
|
|
|
|
#define CLOCK_OSC (RCOSC16M_FREQ)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SYS_CTRL_OSC32K_USE_XTAL
|
|
|
|
#define CLOCK_OSC32K (XOSC32K_FREQ) /* XCOSC frequency */
|
|
|
|
#else
|
|
|
|
#define CLOCK_OSC32K (RCOSC32K_FREQ) /* XCOSC frequency */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* System clock frequency 32MHz */
|
|
|
|
#define CLOCK_CORECLOCK (CLOCK_OSC)
|
|
|
|
/* I/O clock rate setting 16MHz */
|
|
|
|
#define CLOCK_IO (CLOCK_OSC / 2)
|
2020-03-19 16:16:50 +01:00
|
|
|
/** @} */
|
|
|
|
|
2014-10-13 15:29:49 +02:00
|
|
|
/**
|
2017-07-13 23:32:45 +02:00
|
|
|
* @name Timer configuration
|
|
|
|
*
|
|
|
|
* General purpose timers (GPT[0-3]) are configured consecutively and in order
|
|
|
|
* (without gaps) starting from GPT0, i.e. if multiple timers are enabled.
|
|
|
|
*
|
2014-10-13 15:29:49 +02:00
|
|
|
* @{
|
|
|
|
*/
|
2016-08-16 21:07:26 +02:00
|
|
|
static const timer_conf_t timer_config[] = {
|
|
|
|
{
|
2017-07-13 23:32:45 +02:00
|
|
|
.chn = 2,
|
|
|
|
.cfg = GPTMCFG_16_BIT_TIMER, /* required for XTIMER */
|
2016-08-16 21:07:26 +02:00
|
|
|
},
|
|
|
|
{
|
2017-07-13 23:32:45 +02:00
|
|
|
.chn = 1,
|
|
|
|
.cfg = GPTMCFG_32_BIT_TIMER,
|
2016-08-16 21:07:26 +02:00
|
|
|
},
|
|
|
|
{
|
2017-07-13 23:32:45 +02:00
|
|
|
.chn = 2,
|
|
|
|
.cfg = GPTMCFG_16_BIT_TIMER,
|
2016-08-16 21:07:26 +02:00
|
|
|
},
|
|
|
|
{
|
2017-07-13 23:32:45 +02:00
|
|
|
.chn = 1,
|
|
|
|
.cfg = GPTMCFG_32_BIT_TIMER,
|
2016-08-16 21:07:26 +02:00
|
|
|
},
|
|
|
|
};
|
2014-10-13 15:29:49 +02:00
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define TIMER_NUMOF ARRAY_SIZE(timer_config)
|
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
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
2018-01-12 10:41:32 +01:00
|
|
|
* @name UART configuration
|
2014-10-13 15:29:49 +02:00
|
|
|
* @{
|
|
|
|
*/
|
2018-01-12 10:41:32 +01:00
|
|
|
static const uart_conf_t uart_config[] = {
|
|
|
|
{
|
|
|
|
.dev = UART0_BASEADDR,
|
|
|
|
.rx_pin = GPIO_PIN(0, 0),
|
|
|
|
.tx_pin = GPIO_PIN(0, 1),
|
2020-03-10 14:18:40 +01:00
|
|
|
#ifdef MODULE_PERIPH_UART_HW_FC
|
2018-01-12 10:41:32 +01:00
|
|
|
.cts_pin = GPIO_UNDEF,
|
|
|
|
.rts_pin = GPIO_UNDEF
|
2020-03-10 14:18:40 +01:00
|
|
|
#endif
|
2018-01-12 10:41:32 +01:00
|
|
|
}
|
|
|
|
};
|
2014-10-13 15:29:49 +02:00
|
|
|
|
2018-01-12 10:41:32 +01:00
|
|
|
/* interrupt function name mapping */
|
2014-10-24 13:59:21 +02:00
|
|
|
#define UART_0_ISR isr_uart0
|
2014-10-13 15:29:49 +02:00
|
|
|
|
2018-01-12 10:41:32 +01:00
|
|
|
/* macros common across all UARTs */
|
2019-07-18 15:14:29 +02:00
|
|
|
#define UART_NUMOF ARRAY_SIZE(uart_config)
|
2018-01-12 10:41:32 +01:00
|
|
|
|
2014-10-13 15:29:49 +02:00
|
|
|
/** @} */
|
|
|
|
|
2016-03-03 17:04:39 +01:00
|
|
|
/**
|
|
|
|
* @name I2C configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define I2C_IRQ_PRIO 1
|
|
|
|
|
2018-06-14 12:26:00 +02:00
|
|
|
static const i2c_conf_t i2c_config[] = {
|
2016-03-03 17:04:39 +01:00
|
|
|
{
|
2018-06-14 12:26:00 +02:00
|
|
|
.speed = I2C_SPEED_FAST, /**< bus speed */
|
|
|
|
.scl_pin = GPIO_PIN(0, 2), /**< GPIO_PA2, SPI_SCK on SmartRF06 */
|
|
|
|
.sda_pin = GPIO_PIN(0, 4) /**< GPIO_PA4, SPI_MOSI on SmartRF06 */
|
2016-03-03 17:04:39 +01:00
|
|
|
},
|
|
|
|
};
|
2018-06-14 12:26:00 +02:00
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define I2C_NUMOF ARRAY_SIZE(i2c_config)
|
2016-03-03 17:04:39 +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
|
|
|
{
|
2018-08-03 16:05:53 +02:00
|
|
|
.num = 0,
|
|
|
|
.mosi_pin = GPIO_PIN(0, 4),
|
|
|
|
.miso_pin = GPIO_PIN(0, 5),
|
|
|
|
.sck_pin = GPIO_PIN(0, 2),
|
|
|
|
.cs_pin = GPIO_PIN(3, 0)
|
2016-11-08 18:17:17 +01:00
|
|
|
}
|
2015-09-17 21:11:42 +02:00
|
|
|
};
|
2016-11-08 18:17:17 +01:00
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define SPI_NUMOF ARRAY_SIZE(spi_config)
|
2014-10-13 15:29:49 +02:00
|
|
|
/** @} */
|
|
|
|
|
2017-07-06 13:39:52 +02:00
|
|
|
/**
|
|
|
|
* @name ADC configuration
|
|
|
|
* @{
|
|
|
|
*/
|
2018-08-06 21:44:00 +02:00
|
|
|
#define SOC_ADC_ADCCON3_EREF SOC_ADC_ADCCON3_EREF_AVDD5
|
2017-07-06 13:39:52 +02:00
|
|
|
|
|
|
|
static const adc_conf_t adc_config[] = {
|
|
|
|
GPIO_PIN(0, 6), /**< GPIO_PA6 = ADC_ALS_PIN */
|
|
|
|
};
|
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define ADC_NUMOF ARRAY_SIZE(adc_config)
|
2017-07-06 13:39:52 +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
|
|
|
/** @} */
|