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/gpio.h"
25 #include "periph/spi.h"
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
38 #if IS_ACTIVE(CONFIG_EFM32_XTIMER_USE_LETIMER)
39 #define XTIMER_DEV (TIMER_DEV(2))
40 #define XTIMER_HZ (32768UL)
41 #define XTIMER_WIDTH (16)
42 #else
43 #define XTIMER_DEV (TIMER_DEV(0))
44 #define XTIMER_HZ (1000000UL)
45 #define XTIMER_WIDTH (32)
46 #endif
47 #define XTIMER_CHAN (0)
57 #define BC_PIN GPIO_PIN(PE, 1)
64 #define PB0_PIN GPIO_PIN(PC, 8)
65 #define PB1_PIN GPIO_PIN(PC, 9)
72 #define LED0R_PIN GPIO_PIN(PH, 10)
73 #define LED0G_PIN GPIO_PIN(PH, 11)
74 #define LED0B_PIN GPIO_PIN(PH, 12)
75 #define LED1R_PIN GPIO_PIN(PH, 13)
76 #define LED1G_PIN GPIO_PIN(PH, 14)
77 #define LED1B_PIN GPIO_PIN(PH, 15)
78 #define LED0_PIN LED0R_PIN
79 #define LED1_PIN LED1R_PIN
86 #define LED0_ON gpio_set(LED0_PIN)
87 #define LED0_OFF gpio_clear(LED0_PIN)
88 #define LED0_TOGGLE gpio_toggle(LED0_PIN)
89 #define LED1_ON gpio_set(LED1_PIN)
90 #define LED1_OFF gpio_clear(LED1_PIN)
91 #define LED1_TOGGLE gpio_toggle(LED1_PIN)
100 #define DISP_SPI SPI_DEV(0)
101 #define DISP_COM_PIN GPIO_PIN(PA, 11)
102 #define DISP_CS_PIN GPIO_PIN(PC, 14)
103 #define DISP_EN_PIN GPIO_PIN(PA, 9)
112 #define SI7021_I2C I2C_DEV(2)
113 #define SI7021_EN_PIN GPIO_PIN(PB, 3)
114 
115 #define SI70XX_PARAM_I2C_DEV SI7021_I2C
124 #define CORETEMP_ADC ADC_LINE(0)
130 void board_init(void);
131 
132 #ifdef __cplusplus
133 }
134 #endif
135 
Peripheral MCU configuration for the Zigduino board.
Low-level GPIO peripheral driver interface definitions.
void board_init(void)
Initialize the board (GPIO, sensors, clocks).
Low-level SPI peripheral driver interface definition.