board.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2021 Lokotius Filzer
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
24 #ifndef BOARD_H
25 #define BOARD_H
26 
27 #include "cpu.h"
28 #include "periph/gpio.h"
29 #include "periph/pm.h"
30 
31 #ifdef __cplusplus
32 extern "C"
33 {
34 #endif
35 
40 #define SX127X_PARAM_SPI (SPI_DEV(1))
41 #define SX127X_PARAM_SPI_NSS GPIO_PIN(PB, 31) /* D10 */
42 #define SX127X_PARAM_RESET GPIO_PIN(PB, 15) /* A0 */
43 #define SX127X_PARAM_DIO0 GPIO_PIN(PB, 16) /* D2 */
44 #define SX127X_PARAM_DIO1 GPIO_PIN(PA, 11) /* D3 */
45 #define SX127X_PARAM_DIO2 GPIO_PIN(PA, 12) /* D4 */
46 #define SX127X_PARAM_DIO3 GPIO_PIN(PB, 17) /* D5 */
47 #define SX127X_PARAM_PASELECT (SX127X_PA_RFO)
54 #define TCXO_PWR_PIN GPIO_PIN(PB, 3)
55 #define TX_OUTPUT_SEL_PIN GPIO_PIN(PA, 13)
56 #define TX_SWITCH_PWR_PIN GPIO_PIN(PA, 28)
63 #define LED_PORT PORT->Group[0]
64 #define LED0_PIN GPIO_PIN(PA, 22)
65 #define LED0_MASK (1 << 22)
66 #define LED0_ON (LED_PORT.OUTCLR.reg = LED0_MASK)
67 #define LED0_OFF (LED_PORT.OUTSET.reg = LED0_MASK)
68 #define LED0_TOGGLE (LED_PORT.OUTTGL.reg = LED0_MASK)
71 #ifdef __cplusplus
72 }
73 #endif
74 
75 #endif /* BOARD_H */
Low-level GPIO peripheral driver interface definitions.
Power management interface.