Skip to content

Commit 467bd2b

Browse files
authored
Merge pull request #100 from adafruit/develop
Add support for raytac mdbt50q rx dongle
2 parents 9ff2378 + a83f5d8 commit 467bd2b

File tree

16 files changed

+92
-15
lines changed

16 files changed

+92
-15
lines changed

src/boards/arduino_nano_33_ble/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
4444

4545
/*------------------------------------------------------------------*/
46-
/* UART
46+
/* UART (only used by nRF52832)
4747
*------------------------------------------------------------------*/
4848
#define RX_PIN_NUMBER _PINNUM(1, 10)
4949
#define TX_PIN_NUMBER _PINNUM(1, 3)

src/boards/circuitplayground_nrf52840/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#define BUTTON_PULL NRF_GPIO_PIN_PULLDOWN
4848

4949
/*------------------------------------------------------------------*/
50-
/* UART
50+
/* UART (only used by nRF52832)
5151
*------------------------------------------------------------------*/
5252
#define RX_PIN_NUMBER _PINNUM(0, 30)
5353
#define TX_PIN_NUMBER _PINNUM(0, 14)

src/boards/clue_nrf52840/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
4848

4949
/*------------------------------------------------------------------*/
50-
/* UART
50+
/* UART (only used by nRF52832)
5151
*------------------------------------------------------------------*/
5252
#define RX_PIN_NUMBER _PINNUM(0, 09)
5353
#define TX_PIN_NUMBER _PINNUM(0, 10)

src/boards/electronut_labs_papyr/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
4949

5050
/*------------------------------------------------------------------*/
51-
/* UART
51+
/* UART (only used by nRF52832)
5252
*------------------------------------------------------------------*/
5353
#define RX_PIN_NUMBER 7
5454
#define TX_PIN_NUMBER 8

src/boards/feather_nrf52832/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
4343

4444
/*------------------------------------------------------------------*/
45-
/* UART
45+
/* UART (only used by nRF52832)
4646
*------------------------------------------------------------------*/
4747
#define RX_PIN_NUMBER 8
4848
#define TX_PIN_NUMBER 6

src/boards/feather_nrf52840_express/board.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,17 @@
4848
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
4949

5050
/*------------------------------------------------------------------*/
51-
/* UART
51+
/* UART (only used by nRF52832)
5252
*------------------------------------------------------------------*/
5353
#define RX_PIN_NUMBER 8
5454
#define TX_PIN_NUMBER 6
5555
#define CTS_PIN_NUMBER 0
5656
#define RTS_PIN_NUMBER 0
5757
#define HWFC false
5858

59-
// Used as model string in OTA mode
59+
//--------------------------------------------------------------------+
60+
// BLE OTA
61+
//--------------------------------------------------------------------+
6062
#define BLEDIS_MANUFACTURER "Adafruit Industries"
6163
#define BLEDIS_MODEL "Feather nRF52840 Express"
6264

src/boards/itsybitsy_nrf52840_express/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
4848

4949
/*------------------------------------------------------------------*/
50-
/* UART
50+
/* UART (only used by nRF52832)
5151
*------------------------------------------------------------------*/
5252
#define RX_PIN_NUMBER _PINNUM(0, 25)
5353
#define TX_PIN_NUMBER _PINNUM(0, 24)

src/boards/metro_nrf52840_express/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
4949

5050
/*------------------------------------------------------------------*/
51-
/* UART
51+
/* UART (only used by nRF52832)
5252
*------------------------------------------------------------------*/
5353
#define RX_PIN_NUMBER 8
5454
#define TX_PIN_NUMBER 6

src/boards/particle_argon/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
4949

5050
/*------------------------------------------------------------------*/
51-
/* UART
51+
/* UART (only used by nRF52832)
5252
*------------------------------------------------------------------*/
5353
#define RX_PIN_NUMBER 8
5454
#define TX_PIN_NUMBER 6

src/boards/particle_boron/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#define BUTTON_PULL NRF_GPIO_PIN_PULLUP
4949

5050
/*------------------------------------------------------------------*/
51-
/* UART
51+
/* UART (only used by nRF52832)
5252
*------------------------------------------------------------------*/
5353
#define RX_PIN_NUMBER 8
5454
#define TX_PIN_NUMBER 6

0 commit comments

Comments
 (0)