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_NUM PORT_E
35
36#define LED1_PIN_NUM 8
37#define LED1_PORT_NUM PORT_E
38
39#define LED2_PIN_NUM 10
40#define LED2_PORT_NUM PORT_E
41
42#define LED3_PIN_NUM 15
43#define LED3_PORT_NUM PORT_E
44
45#define LED4_PIN_NUM 11
46#define LED4_PORT_NUM PORT_E
47
48#define LED5_PIN_NUM 14
49#define LED5_PORT_NUM PORT_E
50
51#define LED6_PIN_NUM 12
52#define LED6_PORT_NUM PORT_E
53
54#define LED7_PIN_NUM 13
55#define LED7_PORT_NUM PORT_E
62#define BTN0_PIN GPIO_PIN(PORT_A, 0)
63#define BTN0_MODE GPIO_IN
70#define LSM303DLHC_PARAM_MAG_PIN GPIO_PIN(PORT_E, 2)
77#define L3GXXXX_SPI_DEV SPI_DEV(0)
78#define L3GXXXX_SPI_CS GPIO_PIN(PORT_E, 3)
79#define L3GXXXX_INT1_PIN GPIO_PIN(PORT_E, 0)
80#define L3GXXXX_INT2_PIN GPIO_PIN(PORT_E, 1)
83#ifdef __cplusplus
84}
85#endif
86
87#include "stm32_leds.h"
88
89#endif /* BOARD_H */
Common LED macros.