Loading...
Searching...
No Matches
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
20#ifndef BOARD_H
21#define BOARD_H
22
23#include "cpu.h"
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
33#define LED0_PIN_NUM 9
34#define LED0_PORT GPIO_PORT_E
35#define LED0_PORT_NUM PORT_E
36
37#define LED1_PIN_NUM 8
38#define LED1_PORT GPIO_PORT_E
39#define LED1_PORT_NUM PORT_E
40
41#define LED2_PIN_NUM 10
42#define LED2_PORT GPIO_PORT_E
43#define LED2_PORT_NUM PORT_E
44
45#define LED3_PIN_NUM 15
46#define LED3_PORT GPIO_PORT_E
47#define LED3_PORT_NUM PORT_E
48
49#define LED4_PIN_NUM 11
50#define LED4_PORT GPIO_PORT_E
51#define LED4_PORT_NUM PORT_E
52
53#define LED5_PIN_NUM 14
54#define LED5_PORT GPIO_PORT_E
55#define LED5_PORT_NUM PORT_E
56
57#define LED6_PIN_NUM 12
58#define LED6_PORT GPIO_PORT_E
59#define LED6_PORT_NUM PORT_E
60
61#define LED7_PIN_NUM 13
62#define LED7_PORT GPIO_PORT_E
63#define LED7_PORT_NUM PORT_E
70#define BTN0_PIN GPIO_PIN(PORT_A, 0)
71#define BTN0_MODE GPIO_IN
78#define LSM303DLHC_PARAM_MAG_PIN GPIO_PIN(PORT_E, 2)
85#define L3GXXXX_SPI_DEV SPI_DEV(0)
86#define L3GXXXX_SPI_CS GPIO_PIN(PORT_E, 3)
87#define L3GXXXX_INT1_PIN GPIO_PIN(PORT_E, 0)
88#define L3GXXXX_INT2_PIN GPIO_PIN(PORT_E, 1)
91#ifdef __cplusplus
92}
93#endif
94
95#include "stm32_leds.h"
96
97#endif /* BOARD_H */
Common LED macros.