boards/remote-pa/include/periph_conf.h

Peripheral MCU configuration for the Re-Mote board prototype A.

I2C_IRQ_PRIO
1
1
I2C_NUMOF
1
(sizeof(i2c_config) / sizeof(i2c_config[0]))
const i2c_conf_t i2c_config()
1
2
3
4
5
6
7
= {
    {
        .speed = I2C_SPEED_FAST,    
        .scl_pin = GPIO_PIN(1, 1),  
        .sda_pin = GPIO_PIN(1, 0)   
    },
}
SPI_NUMOF
1
(sizeof(spi_config) / sizeof(spi_config[0]))
const spi_conf_t spi_config()
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
= {
    {
        .num      = 0,
        .mosi_pin = GPIO_PIN(3, 0),
        .miso_pin = GPIO_PIN(2, 4),
        .sck_pin  = GPIO_PIN(3, 1),
        .cs_pin   = GPIO_PIN(3, 3)
    },
    {
        .num      = 1,
        .mosi_pin = GPIO_PIN(2, 7),
        .miso_pin = GPIO_PIN(0, 4),
        .sck_pin  = GPIO_PIN(1 ,5),
        .cs_pin   = GPIO_UNDEF
    }
}
SOC_ADC_ADCCON3_EREF
1
SOC_ADC_ADCCON3_EREF_AVDD5
ADC_NUMOF
1
(sizeof(adc_config) / sizeof(adc_config[0]))
const adc_conf_t adc_config()
1
2
3
4
= {
    GPIO_PIN(0, 6), 
    GPIO_PIN(0, 7), 
}