board.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 TriaGnoSys GmbH
3  * 2017 Alexander Kurth, Sören Tempel, Tristan Bruns
4  * 2018 Otto-von-Guericke-Universität Magdeburg
5  *
6  * This file is subject to the terms and conditions of the GNU Lesser
7  * General Public License v2.1. See the file LICENSE in the top level
8  * directory for more details.
9  */
10 
27 #ifndef BOARD_H
28 #define BOARD_H
29 
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
39 #define LED0_PORT GPIOB
40 #define LED0_PORTNUM PORT_B
41 #define LED0_PINNUM (12)
44 #ifdef __cplusplus
45 }
46 #endif
47 
48 /* Beware: This include must come *after* LED0 parameters have been defined */
49 #include "board_common.h"
50 
51 #endif /* BOARD_H */
52