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 
20 #ifndef BOARD_H
21 #define BOARD_H
22 
23 #include "cpu.h"
24 #include "periph_conf.h"
25 #include "periph/adc.h"
26 #include "periph/gpio.h"
27 #include "periph/spi.h"
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
40 #if IS_ACTIVE(CONFIG_EFM32_XTIMER_USE_LETIMER)
41 #define XTIMER_DEV (TIMER_DEV(1))
42 #define XTIMER_HZ (32768UL)
43 #define XTIMER_WIDTH (16)
44 #else
45 #define XTIMER_DEV (TIMER_DEV(0))
46 #define XTIMER_HZ (250000UL)
47 #define XTIMER_WIDTH (16)
48 #endif
49 #define XTIMER_CHAN (0)
50 
59 #define BC_PIN GPIO_PIN(PF, 7)
60 
66 #define PB0_PIN GPIO_PIN(PB, 9)
67 #define PB1_PIN GPIO_PIN(PB, 10)
68 
74 #define LED0_PIN GPIO_PIN(PE, 2)
75 #define LED1_PIN GPIO_PIN(PE, 3)
76 
82 #define LED0_ON gpio_set(LED0_PIN)
83 #define LED0_OFF gpio_clear(LED0_PIN)
84 #define LED0_TOGGLE gpio_toggle(LED0_PIN)
85 #define LED1_ON gpio_set(LED1_PIN)
86 #define LED1_OFF gpio_clear(LED1_PIN)
87 #define LED1_TOGGLE gpio_toggle(LED1_PIN)
88 
96 #define CORETEMP_ADC ADC_LINE(0)
97 
102 void board_init(void);
103 
104 #ifdef __cplusplus
105 }
106 #endif
107 
108 #endif /* BOARD_H */
109 
spi.h
Low-level SPI peripheral driver interface definition.
adc.h
Low-level ADC peripheral driver interface definitions.
periph_conf.h
Configuration of CPU peripherals for the STK3700 starter kit.
gpio.h
Low-level GPIO peripheral driver interface definitions.
board_init
void board_init(void)
Board level initialization.