a752c7ab
elopes
add first test an...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
/*
* Copyright (C) 2017 Inria
* 2017 Inria Chile
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup drivers_sx127x
* @{
* @file
* @brief Default configuration for SX127X driver
*
* @author José Ignacio Alamos <jose.alamos@inria.cl>
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
*/
#ifndef SX127X_PARAMS_H
#define SX127X_PARAMS_H
#include "board.h"
#include "sx127x.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @name Set default configuration parameters for the SX127X driver
* Pins are adapted to ST Nucleo boards.
* @{
*/
#ifndef SX127X_PARAM_SPI
#define SX127X_PARAM_SPI (SPI_DEV(0))
#endif
#ifndef SX127X_PARAM_SPI_NSS
#define SX127X_PARAM_SPI_NSS GPIO_PIN(1, 6) /* D10 */
#endif
#ifndef SX127X_PARAM_RESET
#define SX127X_PARAM_RESET GPIO_PIN(0, 0) /* A0 */
#endif
#ifndef SX127X_PARAM_DIO0
#define SX127X_PARAM_DIO0 GPIO_PIN(0, 10) /* D2 */
#endif
#ifndef SX127X_PARAM_DIO1
#define SX127X_PARAM_DIO1 GPIO_PIN(1, 3) /* D3 */
#endif
#ifndef SX127X_PARAM_DIO2
#define SX127X_PARAM_DIO2 GPIO_PIN(1, 5) /* D4 */
#endif
#ifndef SX127X_PARAM_DIO3
#define SX127X_PARAM_DIO3 GPIO_PIN(1, 4) /* D5 */
#endif
#define SX127X_PARAMS_DEFAULT { .spi = SX127X_PARAM_SPI, \
.nss_pin = SX127X_PARAM_SPI_NSS, \
.reset_pin = SX127X_PARAM_RESET, \
.dio0_pin = SX127X_PARAM_DIO0, \
.dio1_pin = SX127X_PARAM_DIO1, \
.dio2_pin = SX127X_PARAM_DIO2, \
.dio3_pin = SX127X_PARAM_DIO3 }
/**@}*/
/**
* @brief SX127X configuration
*/
static const sx127x_params_t sx127x_params[] =
{
#ifdef SX127X_PARAMS_BOARD
SX127X_PARAMS_BOARD,
#else
SX127X_PARAMS_DEFAULT,
#endif
};
#ifdef __cplusplus
}
#endif
#endif /* SX127X_PARAMS_H */
/** @} */
|