periph_conf.h File Reference

Peripheral MCU configuration for Arduino Due based boards. More...

Detailed Description

#include "periph_cpu.h"
+ Include dependency graph for periph_conf.h:

Go to the source code of this file.

Clock configuration

#define CLOCK_CORECLOCK   (84000000UL)
 
#define CLOCK_EXT_OSC   (12000000UL)
 
#define CLOCK_PLL_MUL   (83)
 
#define CLOCK_PLL_DIV   (12)
 
#define CLOCK_FWS   (4) /* 4 is save for 84MHz */
 

Enable external oscillator for driving the slow clock

Warning
Many (older?) arduino-due boards do not have the external 32khz oscillator soldered on, so only enable this after you make sure its equipped on your specific board
#define CLOCK_SCLK_XTAL   (0)
 

Timer peripheral configuration

#define TIMER_0_ISR   isr_tc0
 
#define TIMER_1_ISR   isr_tc3
 
#define TIMER_NUMOF   ARRAY_SIZE(timer_config)
 
static const timer_conf_t timer_config []
 

RTT configuration

#define RTT_FREQUENCY   (1U) /* 1Hz */
 

UART configuration

#define UART_0_ISR   isr_uart
 
#define UART_1_ISR   isr_usart0
 
#define UART_2_ISR   isr_usart1
 
#define UART_3_ISR   isr_usart3
 
#define UART_NUMOF   ARRAY_SIZE(uart_config)
 
static const uart_conf_t uart_config []
 

SPI configuration

#define SPI_NUMOF   ARRAY_SIZE(spi_config)
 
static const spi_conf_t spi_config []
 

PWM configuration

#define PWM_NUMOF   (1U)
 
#define PWM_CHAN_NUMOF   ARRAY_SIZE(pwm_chan)
 
static const pwm_chan_conf_t pwm_chan []
 

Variable Documentation

◆ pwm_chan

const pwm_chan_conf_t pwm_chan[]
static
Initial value:
= {
{ .pin = GPIO_PIN(PC, 21), .hwchan = 4 },
{ .pin = GPIO_PIN(PC, 22), .hwchan = 5 },
{ .pin = GPIO_PIN(PC, 23), .hwchan = 6 },
{ .pin = GPIO_PIN(PC, 24), .hwchan = 7 }
}

Definition at line 152 of file periph_conf.h.

◆ spi_config

const spi_conf_t spi_config[]
static
Initial value:
= {
{
.dev = SPI0,
.id = ID_SPI0,
.clk = GPIO_PIN(PA, 27),
.mosi = GPIO_PIN(PA, 26),
.miso = GPIO_PIN(PA, 25),
.mux = GPIO_MUX_A
}
}

Definition at line 134 of file periph_conf.h.

◆ timer_config

const timer_conf_t timer_config[]
static
Initial value:
= {
{ .dev = TC0, .id_ch0 = ID_TC0 },
{ .dev = TC1, .id_ch0 = ID_TC3 }
}

Definition at line 64 of file periph_conf.h.

GPIO_MUX_A
@ GPIO_MUX_A
select peripheral function A
Definition: periph_cpu_common.h:136
GPIO_PIN
#define GPIO_PIN(x, y)
Define a CPU specific GPIO pin generator macro.
Definition: periph_cpu.h:35
PC
@ PC
port C
Definition: periph_cpu_common.h:90
PA
@ PA
port A
Definition: periph_cpu_common.h:88