mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
44dd56c3e8
Signed-off-by: dylad <dylan.laduranty@mesotic.com>
148 lines
3.5 KiB
C
148 lines
3.5 KiB
C
/*
|
|
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
|
|
* 2015 FreshTemp, LLC.
|
|
* 2014-2016 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.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup boards_saml21-xpro
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Peripheral MCU configuration for the Atmel SAM L21 Xplained Pro board
|
|
*
|
|
* @author Thomas Eichinger <thomas.eichinger@fu-berlin.de>
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
*/
|
|
|
|
#ifndef PERIPH_CONF_H
|
|
#define PERIPH_CONF_H
|
|
|
|
#include "periph_cpu.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief GCLK reference speed
|
|
*/
|
|
#define CLOCK_CORECLOCK (16000000U)
|
|
|
|
/**
|
|
* @name Timer peripheral configuration
|
|
* @{
|
|
*/
|
|
#define TIMER_NUMOF (1U)
|
|
#define TIMER_0_EN 1
|
|
|
|
/* Timer 0 configuration */
|
|
#define TIMER_0_DEV TC0->COUNT32
|
|
#define TIMER_0_CHANNELS 1
|
|
#define TIMER_0_MAX_VALUE (0xffffffff)
|
|
#define TIMER_0_ISR isr_tc0
|
|
/** @} */
|
|
|
|
/**
|
|
* @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 SERCOM3->USART
|
|
#define UART_0_IRQ SERCOM3_IRQn
|
|
#define UART_0_ISR isr_sercom3
|
|
#define UART_0_REF_F (16000000UL)
|
|
#define UART_0_RUNSTDBY 1
|
|
|
|
/* UART 0 pin configuration */
|
|
#define UART_0_PORT (PORT->Group[0])
|
|
#define UART_0_TX_PIN (22)
|
|
#define UART_0_RX_PIN (23)
|
|
#define UART_0_PINS (((PORT_PA22 | PORT_PA23) >> 16) | PORT_WRCONFIG_HWSEL)
|
|
/** @} */
|
|
|
|
/**
|
|
* @name SPI configuration
|
|
* @{
|
|
*/
|
|
static const spi_conf_t spi_config[] = {
|
|
{
|
|
.dev = &(SERCOM0->SPI),
|
|
.miso_pin = GPIO_PIN(PA, 4),
|
|
.mosi_pin = GPIO_PIN(PA, 6),
|
|
.clk_pin = GPIO_PIN(PA, 7),
|
|
.miso_mux = GPIO_MUX_D,
|
|
.mosi_mux = GPIO_MUX_D,
|
|
.clk_mux = GPIO_MUX_D,
|
|
.miso_pad = SPI_PAD_MISO_0,
|
|
.mosi_pad = SPI_PAD_MOSI_2_SCK_3
|
|
|
|
}
|
|
};
|
|
|
|
#define SPI_NUMOF (sizeof(spi_config) / sizeof(spi_config[0]))
|
|
/** @} */
|
|
|
|
/**
|
|
* @name I2C configuration
|
|
* @{
|
|
*/
|
|
#define I2C_NUMOF (0)
|
|
/** @} */
|
|
|
|
/**
|
|
* @name RTC configuration
|
|
* @{
|
|
*/
|
|
#define RTC_NUMOF (1)
|
|
#define EXTERNAL_OSC32_SOURCE 1
|
|
#define INTERNAL_OSC32_SOURCE 0
|
|
#define ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE 0
|
|
/** @} */
|
|
|
|
/**
|
|
* @name RTT configuration
|
|
* @{
|
|
*/
|
|
#define RTT_FREQUENCY (32768U)
|
|
#define RTT_MAX_VALUE (0xffffffffU)
|
|
#define RTT_NUMOF (1)
|
|
/** @} */
|
|
|
|
/**
|
|
* @name ADC Configuration
|
|
* @{
|
|
*/
|
|
#define ADC_NUMOF (3U)
|
|
|
|
/* ADC 0 Default values */
|
|
#define ADC_0_CLK_SOURCE 0 /* GCLK_GENERATOR_0 */
|
|
#define ADC_0_PRESCALER ADC_CTRLB_PRESCALER_DIV256
|
|
|
|
static const adc_conf_chan_t adc_channels[] = {
|
|
/* port, pin, muxpos */
|
|
{GPIO_PIN(PA, 10), ADC_INPUTCTRL_MUXPOS(ADC_INPUTCTRL_MUXPOS_AIN18)},
|
|
{GPIO_PIN(PA, 11), ADC_INPUTCTRL_MUXPOS(ADC_INPUTCTRL_MUXPOS_AIN19)},
|
|
{GPIO_PIN(PA, 2), ADC_INPUTCTRL_MUXPOS(ADC_INPUTCTRL_MUXPOS_AIN0)}
|
|
};
|
|
|
|
#define ADC_0_NEG_INPUT ADC_INPUTCTRL_MUXNEG(0x18u)
|
|
#define ADC_0_REF_DEFAULT ADC_REFCTRL_REFSEL_INTVCC2
|
|
/** @} */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* PERIPH_CONF_H */
|
|
/** @} */
|