boards/remote-reva/include/periph_conf.h

Peripheral MCU configuration for the RE-Mote board revision 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(2, 3),  
        .sda_pin = GPIO_PIN(2, 2)   
    },
}
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(1, 1),
        .miso_pin = GPIO_PIN(1, 3),
        .sck_pin  = GPIO_PIN(1, 2),
        .cs_pin   = GPIO_PIN(1, 5)
    },
    {
        .num      = 1,
        .mosi_pin = GPIO_PIN(2, 5),
        .miso_pin = GPIO_PIN(2, 6),
        .sck_pin  = GPIO_PIN(2, 4),
        .cs_pin   = GPIO_PIN(0, 7)
    }
}
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
5
6
= {
    GPIO_PIN(0, 5), 
    GPIO_PIN(0, 4), 
    
    GPIO_PIN(0, 2), 
}