Peripheral MCU configuration for Arduino Due based boards.
More...
#include "periph_cpu.h"
Go to the source code of this file.
|
#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 */ |
|
|
- 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) |
|
|
#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 [] |
|
|
#define | RTT_FREQUENCY (1U) /* 1Hz */ |
|
|
#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 [] |
|
◆ pwm_chan
◆ spi_config
Initial value:= {
{
.dev = SPI0,
.id = ID_SPI0,
}
}
Definition at line 134 of file periph_conf.h.
◆ timer_config
Initial value:= {
{ .dev = TC0, .id_ch0 = ID_TC0 },
{ .dev = TC1, .id_ch0 = ID_TC3 }
}
Definition at line 64 of file periph_conf.h.