board.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Frits Kuipers
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser General
5  * Public License v2.1. See the file LICENSE in the top level directory for more
6  * details.
7  */
8 
20 #ifndef BOARD_H
21 #define BOARD_H
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26 
31 #define XTIMER_WIDTH (16)
32 #define XTIMER_BACKOFF (19)
39 #define LED0_PIN_NUM 1
40 #define LED0_PORT GPIO_PORT_B
41 #define LED0_PORT_NUM PORT_B
48 #define BTN0_PIN GPIO_PIN(PORT_B, 8)
49 #define BTN0_MODE GPIO_IN
55 #define STDIO_UART_DEV UART_DEV(1)
56 
57 #ifdef __cplusplus
58 }
59 #endif
60 
61 #include "stm32_leds.h"
62 
63 #endif /* BOARD_H */
Common LED macros.