Skip to content

Commit 3ae21c3

Browse files
committed
Update to 1.1.1
1 parent 92b4534 commit 3ae21c3

10 files changed

+23704
-10
lines changed

bootloader/Seeed_XIAO_nRF52840/Seeed_XIAO_nRF52840_bootloader-0.6.2_s140_7.3.0.hex

Lines changed: 11846 additions & 0 deletions
Large diffs are not rendered by default.

bootloader/Seeed_XIAO_nRF52840_Sense/Seeed_XIAO_nRF52840_Sense_bootloader-0.6.2_s140_7.3.0.hex

Lines changed: 11846 additions & 0 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "framework-arduinoadafruitnrf52-seeed",
3-
"version": "1.10000.0",
3+
"version": "1.10101.0",
44
"description": "Arduino Wiring-based Framework for Nordic Semiconductor nRF52 BLE SoC",
55
"keywords": [
66
"framework",

platform.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1818

1919
name=Seeed nRF52 Boards
20-
version=1.0.0
20+
version=1.1.1
2121

2222
# Compile variables
2323
# -----------------

variants/Seeed_XIAO_nRF52840/variant.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ const uint32_t g_ADigitalPinMap[] =
1010
3, // D1 is P0.03 (A1)
1111
28, // D2 is P0.28 (A2)
1212
29, // D3 is P0.29 (A3)
13-
4, // D4 is P0.04 (A4,SDA)
13+
4, // D4 is P0.04 (A4,SDA)
1414
5, // D5 is P0.05 (A5,SCL)
1515
43, // D6 is P1.11 (TX)
1616
44, // D7 is P1.12 (RX)
1717
45, // D8 is P1.13 (SCK)
1818
46, // D9 is P1.14 (MISO)
1919
47, // D10 is P1.15 (MOSI)
20-
20+
2121
// LEDs
2222
26, // D11 is P0.26 (LED RED)
23-
6, // D12 is P0.06 (LED BLUE)
24-
30, // D13 is P0.30 (LED GREEN)
23+
6, // D12 is P0.06 (LED BLUE)
24+
30, // D13 is P0.30 (LED GREEN)
2525
14, // D14 is P0.14 (READ_BAT)
2626

2727
// LSM6DS3TR
@@ -39,7 +39,7 @@ const uint32_t g_ADigitalPinMap[] =
3939
13, // D22 is P0.13 (HICHG)
4040
17, // D23 is P0.17 (~CHG)
4141

42-
//
42+
//
4343
21, // D24 is P0.21 (QSPI_SCK)
4444
25, // D25 is P0.25 (QSPI_CSN)
4545
20, // D26 is P0.20 (QSPI_SIO_0 DI)
@@ -50,17 +50,17 @@ const uint32_t g_ADigitalPinMap[] =
5050
// NFC
5151
9, // D30 is P0.09 (NFC1)
5252
10, // D31 is P0.10 (NFC2)
53-
53+
5454
// VBAT
55-
31, // D32 is P0.10 (VBAT)
55+
31, // D32 is P0.10 (VBAT)
5656
};
5757

5858
void initVariant()
5959
{
6060
pinMode(PIN_QSPI_CS, OUTPUT);
6161
digitalWrite(PIN_QSPI_CS, HIGH);
6262
pinMode(LED_BUILTIN, OUTPUT);
63-
digitalWrite(PIN_QSPI_CS, HIGH);
63+
digitalWrite(LED_BUILTIN, HIGH);
6464
pinMode(LED_GREEN, OUTPUT);
6565
digitalWrite(LED_GREEN, HIGH);
6666
pinMode(LED_BLUE, OUTPUT);

variants/Seeed_XIAO_nRF52840_Sense/variant.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef _SEEED_XIAO_NRF52840_SENSE_H_
22
#define _SEEED_XIAO_NRF52840_SENSE_H_
33

4+
#define TARGET_SEEED_XIAO_NRF52840_SENSE
5+
46
/** Master clock frequency */
57
#define VARIANT_MCK (64000000ul)
68

0 commit comments

Comments
 (0)