board.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015-2020 Freie Universität Berlin
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
9 #pragma once
10 
22 #include "cpu.h"
23 #include "periph_conf.h"
24 #include "periph/adc.h"
25 #include "periph/gpio.h"
26 #include "periph/spi.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
39 #if IS_ACTIVE(CONFIG_EFM32_XTIMER_USE_LETIMER)
40 #define XTIMER_DEV (TIMER_DEV(1))
41 #define XTIMER_HZ (32768UL)
42 #define XTIMER_WIDTH (16)
43 #else
44 #define XTIMER_DEV (TIMER_DEV(0))
45 #define XTIMER_HZ (250000UL)
46 #define XTIMER_WIDTH (16)
47 #endif
48 #define XTIMER_CHAN (0)
58 #define BC_PIN GPIO_PIN(PA, 12)
65 #define PB0_PIN GPIO_PIN(PE, 3)
66 #define PB1_PIN GPIO_PIN(PE, 2)
73 #define LED0_PIN GPIO_PIN(PF, 6)
74 #define LED1_PIN GPIO_PIN(PF, 7)
81 #define LED0_ON gpio_set(LED0_PIN)
82 #define LED0_OFF gpio_clear(LED0_PIN)
83 #define LED0_TOGGLE gpio_toggle(LED0_PIN)
84 #define LED1_ON gpio_set(LED1_PIN)
85 #define LED1_OFF gpio_clear(LED1_PIN)
86 #define LED1_TOGGLE gpio_toggle(LED1_PIN)
95 #define CORETEMP_ADC ADC_LINE(0)
104 #define DISP_SPI SPI_DEV(0)
105 #define DISP_COM_PIN GPIO_PIN(PE, 10)
106 #define DISP_CS_PIN GPIO_PIN(PE, 11)
107 #define DISP_SELECT_PIN GPIO_PIN(PA, 8)
108 #define DISP_POWER_PIN GPIO_PIN(PA, 10)
117 #define SI7021_I2C I2C_DEV(0)
118 #define SI7021_EN_PIN GPIO_PIN(PF, 8)
119 
120 #define SI70XX_PARAM_I2C_DEV SI7021_I2C
123 #ifdef __cplusplus
124 }
125 #endif
126 
Low-level ADC peripheral driver interface definitions.
Peripheral MCU configuration for the Zigduino board.
Low-level GPIO peripheral driver interface definitions.
Low-level SPI peripheral driver interface definition.