Loading...
Searching...
No Matches
periph_conf.h File Reference

Peripheral MCU configuration for the Generic CC2538-CC2592-DK board. More...

Detailed Description

Peripheral MCU configuration for the Generic CC2538-CC2592-DK board.

Author
Marian Buschsieweke maria.nosp@m.n.bu.nosp@m.schsi.nosp@m.ewek.nosp@m.e@pos.nosp@m.teo..nosp@m.net

Definition in file periph_conf.h.

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

Go to the source code of this file.

UART configuration

#define UART_0_ISR   isr_uart0
 interrupt function name mapping
 
#define UART_NUMOF   ARRAY_SIZE(uart_config)
 number of UARTs
 
static const uart_conf_t uart_config []
 

I2C configuration

#define I2C_IRQ_PRIO   1
 
#define I2C_NUMOF   ARRAY_SIZE(i2c_config)
 
static const i2c_conf_t i2c_config []
 

SPI configuration

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

ADC configuration

#define SOC_ADC_ADCCON3_EREF   SOC_ADC_ADCCON3_EREF_AVDD5
 
#define ADC_NUMOF   ARRAY_SIZE(adc_config)
 
static const adc_conf_t adc_config []
 

Macro Definition Documentation

◆ ADC_NUMOF

#define ADC_NUMOF   ARRAY_SIZE(adc_config)

Definition at line 99 of file periph_conf.h.

◆ I2C_IRQ_PRIO

#define I2C_IRQ_PRIO   1

Definition at line 59 of file periph_conf.h.

◆ I2C_NUMOF

#define I2C_NUMOF   ARRAY_SIZE(i2c_config)

Definition at line 69 of file periph_conf.h.

◆ SOC_ADC_ADCCON3_EREF

#define SOC_ADC_ADCCON3_EREF   SOC_ADC_ADCCON3_EREF_AVDD5

Definition at line 93 of file periph_conf.h.

◆ SPI_NUMOF

#define SPI_NUMOF   ARRAY_SIZE(spi_config)

Definition at line 86 of file periph_conf.h.

◆ UART_0_ISR

#define UART_0_ISR   isr_uart0

interrupt function name mapping

Definition at line 49 of file periph_conf.h.

◆ UART_NUMOF

#define UART_NUMOF   ARRAY_SIZE(uart_config)

number of UARTs

Definition at line 51 of file periph_conf.h.

Variable Documentation

◆ adc_config

const adc_conf_t adc_config[]
static
Initial value:
= {
}
@ PORT_A
port A
Definition periph_cpu.h:47
#define GPIO_PIN(x, y)
Define a CPU specific GPIO pin generator macro.
Definition periph_cpu.h:46

Definition at line 95 of file periph_conf.h.

◆ i2c_config

const i2c_conf_t i2c_config[]
static
Initial value:
= {
{
.speed = I2C_SPEED_FAST,
.scl_pin = GPIO_PIN(PORT_A, 2),
.sda_pin = GPIO_PIN(PORT_A, 4)
},
}
@ I2C_SPEED_FAST
fast mode: ~400 kbit/s
Definition periph_cpu.h:279

Definition at line 61 of file periph_conf.h.

◆ spi_config

const spi_conf_t spi_config[]
static
Initial value:
= {
{
.num = 0,
.mosi_pin = GPIO_PIN(PORT_A, 4),
.miso_pin = GPIO_PIN(PORT_A, 5),
.sck_pin = GPIO_PIN(PORT_A, 2),
.cs_pin = GPIO_PIN(PORT_D, 0)
}
}
@ PORT_D
port D
Definition periph_cpu.h:50

Definition at line 76 of file periph_conf.h.

◆ uart_config

const uart_conf_t uart_config[]
static
Initial value:
= {
{
.rx_pin = GPIO_PIN(PORT_A, 0),
.tx_pin = GPIO_PIN(PORT_A, 1),
}
}
#define UART0_BASEADDR
UART0 Instance.

Definition at line 37 of file periph_conf.h.