Skip to content

Commit 8483346

Browse files
committed
Initial variant support for Raytac MDBT50Q_RX
1 parent 6c23375 commit 8483346

File tree

3 files changed

+308
-0
lines changed

3 files changed

+308
-0
lines changed

boards.txt

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,3 +207,57 @@ pca10056.menu.debug.l2=Level 2 (Full Debug)
207207
pca10056.menu.debug.l2.build.debug_flags=-DCFG_DEBUG=2
208208
pca10056.menu.debug.l3=Level 3 (Segger SystemView)
209209
pca10056.menu.debug.l3.build.debug_flags=-DCFG_DEBUG=3
210+
211+
# ----------------------------------
212+
# Raytac MDBT50Q – RX
213+
# ----------------------------------
214+
MDBT50QRX.name=Raytac MDBT50Q-RX dongle
215+
216+
# VID/PID for bootloader with/without UF2, Arduino + Circuitpython App
217+
MDBT50QRX.vid.0=0x239A
218+
MDBT50QRX.pid.0=0x8029
219+
MDBT50QRX.vid.1=0x239A
220+
MDBT50QRX.pid.1=0x0029
221+
MDBT50QRX.vid.2=0x239A
222+
MDBT50QRX.pid.2=0x002A
223+
MDBT50QRX.vid.3=0x239A
224+
MDBT50QRX.pid.3=0x802A
225+
226+
# Upload
227+
MDBT50QRX.bootloader.tool=bootburn
228+
MDBT50QRX.upload.tool=nrfutil
229+
MDBT50QRX.upload.protocol=nrfutil
230+
MDBT50QRX.upload.use_1200bps_touch=true
231+
MDBT50QRX.upload.wait_for_upload_port=true
232+
MDBT50QRX.upload.maximum_size=815104
233+
MDBT50QRX.upload.maximum_data_size=248832
234+
235+
# Build
236+
MDBT50QRX.build.mcu=cortex-m4
237+
MDBT50QRX.build.f_cpu=64000000
238+
MDBT50QRX.build.board=MDBT50Q_RX
239+
MDBT50QRX.build.core=nRF5
240+
MDBT50QRX.build.variant=MDBT50Q_RX
241+
MDBT50QRX.build.usb_manufacturer="Raytac Corporation"
242+
MDBT50QRX.build.usb_product="Raytac MDBT50Q - RX"
243+
MDBT50QRX.build.extra_flags=-DNRF52840_XXAA -DARDUINO_MDBT50Q_RX {build.flags.usb}
244+
MDBT50QRX.build.ldscript=nrf52840_s140_v6.ld
245+
MDBT50QRX.build.vid=0x239A
246+
MDBT50QRX.build.pid=0x8029
247+
248+
# SofDevice Menu
249+
MDBT50QRX.menu.softdevice.s140v6=0.2.11 SoftDevice s140 6.1.1
250+
MDBT50QRX.menu.softdevice.s140v6.build.sd_name=s140
251+
MDBT50QRX.menu.softdevice.s140v6.build.sd_version=6.1.1
252+
MDBT50QRX.menu.softdevice.s140v6.build.sd_fwid=0x00B6
253+
254+
# Debug Menu
255+
MDBT50QRX.menu.debug.l0=Level 0 (Release)
256+
MDBT50QRX.menu.debug.l0.build.debug_flags=-DCFG_DEBUG=0
257+
MDBT50QRX.menu.debug.l1=Level 1 (Error Message)
258+
MDBT50QRX.menu.debug.l1.build.debug_flags=-DCFG_DEBUG=1
259+
MDBT50QRX.menu.debug.l2=Level 2 (Full Debug)
260+
MDBT50QRX.menu.debug.l2.build.debug_flags=-DCFG_DEBUG=2
261+
MDBT50QRX.menu.debug.l3=Level 3 (Segger SystemView)
262+
MDBT50QRX.menu.debug.l3.build.debug_flags=-DCFG_DEBUG=3
263+

variants/MDBT50Q_RX/variant.cpp

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
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 "wiring_constants.h"
23+
#include "wiring_digital.h"
24+
#include "nrf.h"
25+
26+
const uint32_t g_ADigitalPinMap[] =
27+
{
28+
// D0 .. D13
29+
25, // D0 is P0.25 (UART TX)
30+
24, // D1 is P0.24 (UART RX
31+
10, // D2 is P0.10 (NFC2)
32+
45, // D3 is P1.13 (LED1)
33+
42, // D4 is P1.11 (LED2)
34+
40, // D5 is P1.08
35+
7, // D6 is P0.07
36+
15, // D7 is P0.15 (Button)
37+
16, // D8 is P0.16 (NeoPixel)
38+
26, // D9 is P0.26
39+
27, // D10 is P0.27
40+
6, // D11 is P0.06
41+
8, // D12 is P0.08
42+
41, // D13 is P1.09
43+
44+
// D14 .. D21 (aka A0 .. A7)
45+
4, // D14 is P0.04 (A0)
46+
5, // D15 is P0.05 (A1)
47+
30, // D16 is P0.30 (A2)
48+
28, // D17 is P0.28 (A3)
49+
2, // D18 is P0.02 (A4)
50+
3, // D19 is P0.03 (A5)
51+
29, // D20 is P0.29 (A6, Battery)
52+
31, // D21 is P0.31 (A7, ARef)
53+
54+
// D22 .. D23 (aka I2C pins)
55+
12, // D22 is P0.12 (SDA)
56+
11, // D23 is P0.11 (SCL)
57+
58+
// D24 .. D26 (aka SPI pins)
59+
15, // D24 is P0.15 (SPI MISO)
60+
13, // D25 is P0.13 (SPI MOSI)
61+
14, // D26 is P0.14 (SPI SCK )
62+
63+
// QSPI pins (not exposed via any header / test point)
64+
19, // D27 is P0.19 (QSPI CLK)
65+
20, // D28 is P0.20 (QSPI CS)
66+
17, // D29 is P0.17 (QSPI Data 0)
67+
22, // D30 is P0.22 (QSPI Data 1)
68+
23, // D31 is P0.23 (QSPI Data 2)
69+
21, // D32 is P0.21 (QSPI Data 3)
70+
71+
// The remaining NFC pin
72+
9, // D33 is P0.09 (NFC1, exposed only via test point on bottom of board)
73+
74+
// Thus, there are 34 defined pins
75+
76+
// The remaining pins are not usable:
77+
//
78+
//
79+
// The following pins were never listed as they were considered unusable
80+
// 0, // P0.00 is XL1 (attached to 32.768kHz crystal)
81+
// 1, // P0.01 is XL2 (attached to 32.768kHz crystal)
82+
// 18, // P0.18 is RESET (attached to switch)
83+
// 32, // P1.00 is SWO (attached to debug header)
84+
//
85+
// The remaining pins are not connected (per schematic)
86+
// 33, // P1.01 is not connected per schematic
87+
// 35, // P1.03 is not connected per schematic
88+
// 36, // P1.04 is not connected per schematic
89+
// 37, // P1.05 is not connected per schematic
90+
// 38, // P1.06 is not connected per schematic
91+
// 39, // P1.07 is not connected per schematic
92+
// 43, // P1.11 is not connected per schematic
93+
// 44, // P1.12 is not connected per schematic
94+
// 45, // P1.13 is not connected per schematic
95+
// 46, // P1.14 is not connected per schematic
96+
};
97+
98+
void initVariant()
99+
{
100+
// LED1 & LED2
101+
pinMode(PIN_LED1, OUTPUT);
102+
ledOff(PIN_LED1);
103+
104+
pinMode(PIN_LED2, OUTPUT);
105+
ledOff(PIN_LED2);
106+
}
107+

variants/MDBT50Q_RX/variant.h

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
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_FEATHER52840_
20+
#define _VARIANT_FEATHER52840_
21+
22+
/** Master clock frequency */
23+
#define VARIANT_MCK (64000000ul)
24+
25+
#define USE_LFXO // Board uses 32khz crystal for LF
26+
// define USE_LFRC // Board uses RC for LF
27+
28+
/*----------------------------------------------------------------------------
29+
* Headers
30+
*----------------------------------------------------------------------------*/
31+
32+
#include "WVariant.h"
33+
34+
#ifdef __cplusplus
35+
extern "C"
36+
{
37+
#endif // __cplusplus
38+
39+
// Number of pins defined in PinDescription array
40+
#define PINS_COUNT (34)
41+
#define NUM_DIGITAL_PINS (34)
42+
#define NUM_ANALOG_INPUTS (6) // A6 is used for battery, A7 is analog reference
43+
#define NUM_ANALOG_OUTPUTS (0)
44+
45+
// LEDs
46+
#define PIN_LED1 (3)
47+
#define PIN_LED2 (4)
48+
#define PIN_NEOPIXEL (8)
49+
50+
#define LED_BUILTIN PIN_LED1
51+
#define LED_CONN PIN_LED2
52+
53+
#define LED_RED PIN_LED1
54+
#define LED_BLUE PIN_LED2
55+
56+
#define LED_STATE_ON 0 // State when LED is litted
57+
58+
// Buttons
59+
/*
60+
#define PIN_BUTTON1 (2)
61+
#define PIN_BUTTON2 (3)
62+
#define PIN_BUTTON3 (4)
63+
#define PIN_BUTTON4 (5)
64+
*/
65+
66+
/*
67+
* Analog pins
68+
*/
69+
#define PIN_A0 (14)
70+
#define PIN_A1 (15)
71+
#define PIN_A2 (16)
72+
#define PIN_A3 (17)
73+
#define PIN_A4 (18)
74+
#define PIN_A5 (19)
75+
#define PIN_A6 (20)
76+
#define PIN_A7 (21)
77+
78+
static const uint8_t A0 = PIN_A0 ;
79+
static const uint8_t A1 = PIN_A1 ;
80+
static const uint8_t A2 = PIN_A2 ;
81+
static const uint8_t A3 = PIN_A3 ;
82+
static const uint8_t A4 = PIN_A4 ;
83+
static const uint8_t A5 = PIN_A5 ;
84+
static const uint8_t A6 = PIN_A6 ;
85+
static const uint8_t A7 = PIN_A7 ;
86+
#define ADC_RESOLUTION 14
87+
88+
// Other pins
89+
#define PIN_AREF PIN_A7
90+
#define PIN_VBAT PIN_A6
91+
#define PIN_NFC1 (33)
92+
#define PIN_NFC2 (2)
93+
94+
static const uint8_t AREF = PIN_AREF;
95+
96+
/*
97+
* Serial interfaces
98+
*/
99+
// Serial
100+
#define PIN_SERIAL_RX (1)
101+
#define PIN_SERIAL_TX (0)
102+
103+
/*
104+
* SPI Interfaces
105+
*/
106+
#define SPI_INTERFACES_COUNT 1
107+
108+
#define PIN_SPI_MISO (24)
109+
#define PIN_SPI_MOSI (25)
110+
#define PIN_SPI_SCK (26)
111+
112+
static const uint8_t SS = (5);
113+
static const uint8_t MOSI = PIN_SPI_MOSI ;
114+
static const uint8_t MISO = PIN_SPI_MISO ;
115+
static const uint8_t SCK = PIN_SPI_SCK ;
116+
117+
/*
118+
* Wire Interfaces
119+
*/
120+
#define WIRE_INTERFACES_COUNT 1
121+
122+
#define PIN_WIRE_SDA (22)
123+
#define PIN_WIRE_SCL (23)
124+
125+
// QSPI Pins
126+
#define PIN_QSPI_SCK 27
127+
#define PIN_QSPI_CS 28
128+
#define PIN_QSPI_IO0 29
129+
#define PIN_QSPI_IO1 30
130+
#define PIN_QSPI_IO2 31
131+
#define PIN_QSPI_IO3 32
132+
133+
// On-board QSPI Flash
134+
#define EXTERNAL_FLASH_DEVICES GD25Q16C
135+
136+
#define USB_MSC_BLOCK_SIZE 512
137+
#define USB_MSC_BLOCK_COUNT ((2*1024*1024) / USB_MSC_BLOCK_SIZE)
138+
139+
#ifdef __cplusplus
140+
}
141+
#endif
142+
143+
/*----------------------------------------------------------------------------
144+
* Arduino objects - C++ only
145+
*----------------------------------------------------------------------------*/
146+
147+
#endif

0 commit comments

Comments
 (0)