1
+ /*
2
+ Copyright (c) 2014-2015 Arduino LLC. All right reserved.
3
+ Copyright (c) 2016 Sandeep Mistry All right reserved.
4
+ Copyright (c) 2018, Adafruit Industries (adafruit.com)
5
+
6
+ This library is free software; you can redistribute it and/or
7
+ modify it under the terms of the GNU Lesser General Public
8
+ License as published by the Free Software Foundation; either
9
+ version 2.1 of the License, or (at your option) any later version.
10
+ This library is distributed in the hope that it will be useful,
11
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
+ See the GNU Lesser General Public License for more details.
14
+ You should have received a copy of the GNU Lesser General Public
15
+ License along with this library; if not, write to the Free Software
16
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ */
18
+
19
+ #ifndef _VARIANT_GAT562_MESH_TRIAL_TRACKER_
20
+ #define _VARIANT_GAT562_MESH_TRIAL_TRACKER_
21
+
22
+ #define GAT562_MESH_TRIAL_TRACKER
23
+
24
+ /** Master clock frequency */
25
+ #define VARIANT_MCK (64000000ul)
26
+
27
+ #define USE_LFXO // Board uses 32khz crystal for LF
28
+ // define USE_LFRC // Board uses RC for LF
29
+
30
+ /*----------------------------------------------------------------------------
31
+ * Headers
32
+ *----------------------------------------------------------------------------*/
33
+
34
+ #include "WVariant.h"
35
+
36
+ #ifdef __cplusplus
37
+ extern "C" {
38
+ #endif // __cplusplus
39
+
40
+ // Number of pins defined in PinDescription array
41
+ #define PINS_COUNT (48)
42
+ #define NUM_DIGITAL_PINS (48)
43
+ #define NUM_ANALOG_INPUTS (6)
44
+ #define NUM_ANALOG_OUTPUTS (0)
45
+
46
+ // LEDs
47
+ #define PIN_LED1 (35)
48
+ #define PIN_LED2 (36)
49
+
50
+ #define LED_BUILTIN PIN_LED1
51
+ #define LED_CONN PIN_LED2
52
+
53
+ #define LED_GREEN PIN_LED1
54
+ #define LED_BLUE PIN_LED2
55
+
56
+ #define LED_STATE_ON 1 // State when LED is litted
57
+
58
+ /*
59
+ * Buttons
60
+ */
61
+
62
+ #define PIN_BUTTON1 9 // Pin for button on E-ink button module or IO expansion
63
+ #define BUTTON_NEED_PULLUP
64
+ #define PIN_BUTTON2 12
65
+ #define PIN_BUTTON3 24
66
+ #define PIN_BUTTON4 25
67
+
68
+ /*
69
+ * Analog pins
70
+ */
71
+ #define PIN_A0 (5)
72
+ #define PIN_A1 (31)
73
+ #define PIN_A2 (28)
74
+ #define PIN_A3 (29)
75
+ #define PIN_A4 (30)
76
+ #define PIN_A5 (31)
77
+ #define PIN_A6 (0xff)
78
+ #define PIN_A7 (0xff)
79
+
80
+ static const uint8_t A0 = PIN_A0 ;
81
+ static const uint8_t A1 = PIN_A1 ;
82
+ static const uint8_t A2 = PIN_A2 ;
83
+ static const uint8_t A3 = PIN_A3 ;
84
+ static const uint8_t A4 = PIN_A4 ;
85
+ static const uint8_t A5 = PIN_A5 ;
86
+ static const uint8_t A6 = PIN_A6 ;
87
+ static const uint8_t A7 = PIN_A7 ;
88
+ #define ADC_RESOLUTION 14
89
+
90
+ // Other pins
91
+ #define PIN_AREF (2)
92
+ #define PIN_NFC1 (9)
93
+ #define PIN_NFC2 (10)
94
+
95
+ static const uint8_t AREF = PIN_AREF ;
96
+
97
+ /*
98
+ * Serial interfaces
99
+ */
100
+ #define PIN_SERIAL1_RX (15)
101
+ #define PIN_SERIAL1_TX (16)
102
+
103
+ // Connected to Jlink CDC
104
+ #define PIN_SERIAL2_RX (8)
105
+ #define PIN_SERIAL2_TX (6)
106
+
107
+ /*
108
+ * SPI Interfaces
109
+ */
110
+ #define SPI_INTERFACES_COUNT 2
111
+
112
+ #define PIN_SPI_MISO (45)
113
+ #define PIN_SPI_MOSI (44)
114
+ #define PIN_SPI_SCK (43)
115
+
116
+ #define PIN_SPI1_MISO (29) // (0 + 29)
117
+ #define PIN_SPI1_MOSI (30) // (0 + 30)
118
+ #define PIN_SPI1_SCK (3) // (0 + 3)
119
+
120
+ static const uint8_t SS = 42 ;
121
+ static const uint8_t MOSI = PIN_SPI_MOSI ;
122
+ static const uint8_t MISO = PIN_SPI_MISO ;
123
+ static const uint8_t SCK = PIN_SPI_SCK ;
124
+
125
+ /*
126
+ * eink display pins
127
+ */
128
+
129
+ // #define PIN_EINK_CS (0 + 26)
130
+ // #define PIN_EINK_BUSY (0 + 4)
131
+ // #define PIN_EINK_DC (0 + 17)
132
+ // #define PIN_EINK_RES (-1)
133
+ // #define PIN_EINK_SCLK (0 + 3)
134
+ // #define PIN_EINK_MOSI (0 + 30) // also called SDI
135
+
136
+ // #define USE_EINK
137
+
138
+ // Display - OLED connected via I2C
139
+ #define HAS_SCREEN 1
140
+ #define USE_SSD1306
141
+
142
+ // RAKRGB
143
+ // #define HAS_NCP5623
144
+
145
+ /*
146
+ * Wire Interfaces
147
+ */
148
+ #define WIRE_INTERFACES_COUNT 1
149
+
150
+ #define PIN_WIRE_SDA (13)
151
+ #define PIN_WIRE_SCL (14)
152
+
153
+ // QSPI Pins
154
+ #define PIN_QSPI_SCK 3
155
+ #define PIN_QSPI_CS 26
156
+ #define PIN_QSPI_IO0 30
157
+ #define PIN_QSPI_IO1 29
158
+ #define PIN_QSPI_IO2 28
159
+ #define PIN_QSPI_IO3 2
160
+
161
+ // On-board QSPI Flash
162
+ #define EXTERNAL_FLASH_DEVICES IS25LP080D
163
+ #define EXTERNAL_FLASH_USE_QSPI
164
+
165
+ /* @note RAK5005-O GPIO mapping to RAK4631 GPIO ports
166
+ RAK5005-O <-> nRF52840
167
+ IO1 <-> P0.17 (Arduino GPIO number 17)
168
+ IO2 <-> P1.02 (Arduino GPIO number 34)
169
+ IO3 <-> P0.21 (Arduino GPIO number 21)
170
+ IO4 <-> P0.04 (Arduino GPIO number 4)
171
+ IO5 <-> P0.09 (Arduino GPIO number 9)
172
+ IO6 <-> P0.10 (Arduino GPIO number 10)
173
+ IO7 <-> P0.28 (Arduino GPIO number 28)
174
+ SW1 <-> P0.01 (Arduino GPIO number 1)
175
+ A0 <-> P0.04/AIN2 (Arduino Analog A2
176
+ A1 <-> P0.31/AIN7 (Arduino Analog A7
177
+ SPI_CS <-> P0.26 (Arduino GPIO number 26)
178
+ */
179
+
180
+ // RAK4630 LoRa module
181
+
182
+ /* Setup of the SX1262 LoRa module ( https://docs.rakwireless.com/Product-Categories/WisBlock/RAK4631/Datasheet/ )
183
+
184
+ P1.10 NSS SPI NSS (Arduino GPIO number 42)
185
+ P1.11 SCK SPI CLK (Arduino GPIO number 43)
186
+ P1.12 MOSI SPI MOSI (Arduino GPIO number 44)
187
+ P1.13 MISO SPI MISO (Arduino GPIO number 45)
188
+ P1.14 BUSY BUSY signal (Arduino GPIO number 46)
189
+ P1.15 DIO1 DIO1 event interrupt (Arduino GPIO number 47)
190
+ P1.06 NRESET NRESET manual reset of the SX1262 (Arduino GPIO number 38)
191
+
192
+ Important for successful SX1262 initialization:
193
+
194
+ * Setup DIO2 to control the antenna switch
195
+ * Setup DIO3 to control the TCXO power supply
196
+ * Setup the SX1262 to use it's DCDC regulator and not the LDO
197
+ * RAK4630 schematics show GPIO P1.07 connected to the antenna switch, but it should not be initialized, as DIO2 will do the
198
+ control of the antenna switch
199
+
200
+ SO GPIO 39/TXEN MAY NOT BE DEFINED FOR SUCCESSFUL OPERATION OF THE SX1262 - TG
201
+
202
+ */
203
+
204
+ // configure the SET pin on the RAK12039 sensor board to disable the sensor while not reading
205
+ // air quality telemetry. PIN_NFC2 doesn't seem to be used anywhere else in the codebase, but if
206
+ // you're having problems with your node behaving weirdly when a RAK12039 board isn't connected,
207
+ // try disabling this.
208
+ // #define PMSA003I_ENABLE_PIN PIN_NFC2
209
+
210
+ // #define DETECTION_SENSOR_EN 4
211
+
212
+ #define USE_SX1262
213
+ #define SX126X_CS (42)
214
+ #define SX126X_DIO1 (47)
215
+ #define SX126X_BUSY (46)
216
+ #define SX126X_RESET (38)
217
+ // #define SX126X_TXEN (39)
218
+ // #define SX126X_RXEN (37)
219
+ #define SX126X_POWER_EN (37)
220
+ // DIO2 controlls an antenna switch and the TCXO voltage is controlled by DIO3
221
+ #define SX126X_DIO2_AS_RF_SWITCH
222
+ #define SX126X_DIO3_TCXO_VOLTAGE 1.8
223
+
224
+ // Testing USB detection
225
+ #define NRF_APM
226
+
227
+ // enables 3.3V periphery like GPS or IO Module
228
+ // Do not toggle this for GPS power savings
229
+ #define PIN_3V3_EN (34)
230
+
231
+ // RAK1910 GPS module
232
+ // If using the wisblock GPS module and pluged into Port A on WisBlock base
233
+ // IO1 is hooked to PPS (pin 12 on header) = gpio 17
234
+ // IO2 is hooked to GPS RESET = gpio 34, but it can not be used to this because IO2 is ALSO used to control 3V3_S power (1 is on).
235
+ // Therefore must be 1 to keep peripherals powered
236
+ // Power is on the controllable 3V3_S rail
237
+ // #define PIN_GPS_RESET (34)
238
+ // #define PIN_GPS_EN PIN_3V3_EN
239
+ #define PIN_GPS_PPS (17) // Pulse per second input from the GPS
240
+
241
+ #define GPS_RX_PIN PIN_SERIAL1_RX
242
+ #define GPS_TX_PIN PIN_SERIAL1_TX
243
+
244
+ // Define pin to enable GPS toggle (set GPIO to LOW) via user button triple press
245
+
246
+ // RAK12002 RTC Module
247
+ // #define RV3028_RTC (uint8_t)0b1010010
248
+
249
+ // RAK18001 Buzzer in Slot C
250
+ // #define PIN_BUZZER 21 // IO3 is PWM2
251
+ // NEW: set this via protobuf instead!
252
+
253
+ // Battery
254
+ // The battery sense is hooked to pin A0 (5)
255
+ #define BATTERY_PIN PIN_A0
256
+ // and has 12 bit resolution
257
+ #define BATTERY_SENSE_RESOLUTION_BITS 12
258
+ #define BATTERY_SENSE_RESOLUTION 4096.0
259
+ #undef AREF_VOLTAGE
260
+ #define AREF_VOLTAGE 3.0
261
+ #define VBAT_AR_INTERNAL AR_INTERNAL_3_0
262
+ #define ADC_MULTIPLIER 1.73
263
+
264
+ // #define HAS_RTC 1
265
+
266
+ // #define HAS_ETHERNET 1
267
+
268
+ // #define RAK_4631 1
269
+
270
+ // #define PIN_ETHERNET_RESET 21
271
+ // #define PIN_ETHERNET_SS PIN_EINK_CS
272
+ // #define ETH_SPI_PORT SPI1
273
+ // #define AQ_SET_PIN 10
274
+
275
+ #ifdef __cplusplus
276
+ }
277
+ #endif
278
+
279
+ /*----------------------------------------------------------------------------
280
+ * Arduino objects - C++ only
281
+ *----------------------------------------------------------------------------*/
282
+
283
+ #endif
0 commit comments