board.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 Freie Universität Berlin
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 
9 #pragma once
10 
22 #include "cpu.h"
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
32 #define LED0_PIN_NUM 9
33 #define LED0_PORT GPIO_PORT_E
34 #define LED0_PORT_NUM PORT_E
35 
36 #define LED1_PIN_NUM 8
37 #define LED1_PORT GPIO_PORT_E
38 #define LED1_PORT_NUM PORT_E
39 
40 #define LED2_PIN_NUM 10
41 #define LED2_PORT GPIO_PORT_E
42 #define LED2_PORT_NUM PORT_E
43 
44 #define LED3_PIN_NUM 15
45 #define LED3_PORT GPIO_PORT_E
46 #define LED3_PORT_NUM PORT_E
47 
48 #define LED4_PIN_NUM 11
49 #define LED4_PORT GPIO_PORT_E
50 #define LED4_PORT_NUM PORT_E
51 
52 #define LED5_PIN_NUM 14
53 #define LED5_PORT GPIO_PORT_E
54 #define LED5_PORT_NUM PORT_E
55 
56 #define LED6_PIN_NUM 12
57 #define LED6_PORT GPIO_PORT_E
58 #define LED6_PORT_NUM PORT_E
59 
60 #define LED7_PIN_NUM 13
61 #define LED7_PORT GPIO_PORT_E
62 #define LED7_PORT_NUM PORT_E
69 #define BTN0_PIN GPIO_PIN(PORT_A, 0)
70 #define BTN0_MODE GPIO_IN
77 #define LSM303DLHC_PARAM_MAG_PIN GPIO_PIN(PORT_E, 2)
84 #define L3GXXXX_SPI_DEV SPI_DEV(0)
85 #define L3GXXXX_SPI_CS GPIO_PIN(PORT_E, 3)
86 #define L3GXXXX_INT1_PIN GPIO_PIN(PORT_E, 0)
87 #define L3GXXXX_INT2_PIN GPIO_PIN(PORT_E, 1)
90 #ifdef __cplusplus
91 }
92 #endif
93 
94 #include "stm32_leds.h"
95 
Common LED macros.