Skip to content

Commit eb9ee6c

Browse files
committed
feat: add support for GAT-IOT GAT562 Mesh Trial Tracker (nRF52840)
- Added new board definition: `boards/gat562_mesh_trial_tracker.json` for the GAT562 Mesh Trial Tracker, based on the nRF52840 architecture. - Created `variants/gat562_mesh_trial_tracker/` directory with `platformio.ini` environment for building firmware for this board. - Board configuration is based on the RAK4631, as the GAT562 uses the same GPIO and SSD1306 display setup. - Updated build flags and library dependencies for the new board. This change enables Meshtastic firmware development and deployment for the GAT-IOT GAT562 Mesh Trial Tracker, expanding hardware compatibility.
1 parent cc66f7c commit eb9ee6c

File tree

4 files changed

+394
-0
lines changed

4 files changed

+394
-0
lines changed

boards/gat562_mesh_trial_tracker.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "nrf52840_s140_v6.ld"
5+
},
6+
"core": "nRF5",
7+
"cpu": "cortex-m4",
8+
"extra_flags": "-DARDUINO_NRF52840_FEATHER -DNRF52840_XXAA",
9+
"f_cpu": "64000000L",
10+
"hwids": [
11+
["0x239A", "0x8029"],
12+
["0x239A", "0x0029"],
13+
["0x239A", "0x002A"],
14+
["0x239A", "0x802A"]
15+
],
16+
"usb_product": "GAT562 Mesh Trial Tracker",
17+
"mcu": "nrf52840",
18+
"variant": "gat562_mesh_trial_tracker",
19+
"bsp": {
20+
"name": "adafruit"
21+
},
22+
"softdevice": {
23+
"sd_flags": "-DS140",
24+
"sd_name": "s140",
25+
"sd_version": "6.1.1",
26+
"sd_fwid": "0x00B6"
27+
},
28+
"bootloader": {
29+
"settings_addr": "0xFF000"
30+
}
31+
},
32+
"connectivity": ["bluetooth"],
33+
"debug": {
34+
"jlink_device": "nRF52840_xxAA",
35+
"svd_path": "nrf52840.svd",
36+
"openocd_target": "nrf52840-mdk-rs"
37+
},
38+
"frameworks": ["arduino", "freertos"],
39+
"name": "GAT562 Mesh Trial Tracker",
40+
"upload": {
41+
"maximum_ram_size": 248832,
42+
"maximum_size": 815104,
43+
"speed": 115200,
44+
"protocol": "nrfutil",
45+
"protocols": ["jlink", "nrfjprog", "nrfutil", "stlink"],
46+
"use_1200bps_touch": true,
47+
"require_upload_port": true,
48+
"wait_for_upload_port": true
49+
},
50+
"url": "http://www.gat-iot.com/",
51+
"vendor": "GAT-IOT"
52+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
; The very slick RAK wireless RAK 4631 / 4630 board - Unified firmware for 5005/19003, with or without OLED RAK 1921
2+
[env:gat562_mesh_trial_tracker]
3+
extends = nrf52840_base
4+
board = gat562_mesh_trial_tracker
5+
board_check = true
6+
build_flags = ${nrf52840_base.build_flags} -Ivariants/gat562_mesh_trial_tracker -D GAT562_MESH_TRIAL_TRACKER
7+
-L "${platformio.libdeps_dir}/${this.__env__}/bsec2/src/cortex-m4/fpv4-sp-d16-hard"
8+
-DGPS_POWER_TOGGLE ; comment this line to disable triple press function on the user button to turn off gps entirely.
9+
-DRADIOLIB_EXCLUDE_SX128X=1
10+
-DRADIOLIB_EXCLUDE_SX127X=1
11+
-DRADIOLIB_EXCLUDE_LR11X0=1
12+
build_src_filter = ${nrf52_base.build_src_filter} +<../variants/gat562_mesh_trial_tracker>
13+
lib_deps =
14+
${nrf52840_base.lib_deps}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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+
11+
This library is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14+
See the GNU Lesser General Public License for more details.
15+
16+
You should have received a copy of the GNU Lesser General Public
17+
License along with this library; if not, write to the Free Software
18+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
*/
20+
21+
#include "variant.h"
22+
#include "nrf.h"
23+
#include "wiring_constants.h"
24+
#include "wiring_digital.h"
25+
26+
const uint32_t g_ADigitalPinMap[] = {
27+
// P0
28+
0, 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,
29+
30+
// P1
31+
32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47};
32+
33+
void initVariant()
34+
{
35+
// LED1 & LED2
36+
pinMode(PIN_LED1, OUTPUT);
37+
ledOff(PIN_LED1);
38+
39+
pinMode(PIN_LED2, OUTPUT);
40+
ledOff(PIN_LED2);
41+
42+
// 3V3 Power Rail
43+
pinMode(PIN_3V3_EN, OUTPUT);
44+
digitalWrite(PIN_3V3_EN, HIGH);
45+
}
Lines changed: 283 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,283 @@
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

Comments
 (0)