Skip to content

Commit

Permalink
Update to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maxgerhardt committed Jul 26, 2023
1 parent 92b4534 commit 3ae21c3
Show file tree
Hide file tree
Showing 10 changed files with 23,704 additions and 10 deletions.
11,846 changes: 11,846 additions & 0 deletions bootloader/Seeed_XIAO_nRF52840/Seeed_XIAO_nRF52840_bootloader-0.6.2_s140_7.3.0.hex

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "framework-arduinoadafruitnrf52-seeed",
"version": "1.10000.0",
"version": "1.10101.0",
"description": "Arduino Wiring-based Framework for Nordic Semiconductor nRF52 BLE SoC",
"keywords": [
"framework",
Expand Down
2 changes: 1 addition & 1 deletion platform.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

name=Seeed nRF52 Boards
version=1.0.0
version=1.1.1

# Compile variables
# -----------------
Expand Down
16 changes: 8 additions & 8 deletions variants/Seeed_XIAO_nRF52840/variant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ const uint32_t g_ADigitalPinMap[] =
3, // D1 is P0.03 (A1)
28, // D2 is P0.28 (A2)
29, // D3 is P0.29 (A3)
4, // D4 is P0.04 (A4,SDA)
4, // D4 is P0.04 (A4,SDA)
5, // D5 is P0.05 (A5,SCL)
43, // D6 is P1.11 (TX)
44, // D7 is P1.12 (RX)
45, // D8 is P1.13 (SCK)
46, // D9 is P1.14 (MISO)
47, // D10 is P1.15 (MOSI)

// LEDs
26, // D11 is P0.26 (LED RED)
6, // D12 is P0.06 (LED BLUE)
30, // D13 is P0.30 (LED GREEN)
6, // D12 is P0.06 (LED BLUE)
30, // D13 is P0.30 (LED GREEN)
14, // D14 is P0.14 (READ_BAT)

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

//
//
21, // D24 is P0.21 (QSPI_SCK)
25, // D25 is P0.25 (QSPI_CSN)
20, // D26 is P0.20 (QSPI_SIO_0 DI)
Expand All @@ -50,17 +50,17 @@ const uint32_t g_ADigitalPinMap[] =
// NFC
9, // D30 is P0.09 (NFC1)
10, // D31 is P0.10 (NFC2)

// VBAT
31, // D32 is P0.10 (VBAT)
31, // D32 is P0.10 (VBAT)
};

void initVariant()
{
pinMode(PIN_QSPI_CS, OUTPUT);
digitalWrite(PIN_QSPI_CS, HIGH);
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(PIN_QSPI_CS, HIGH);
digitalWrite(LED_BUILTIN, HIGH);
pinMode(LED_GREEN, OUTPUT);
digitalWrite(LED_GREEN, HIGH);
pinMode(LED_BLUE, OUTPUT);
Expand Down
2 changes: 2 additions & 0 deletions variants/Seeed_XIAO_nRF52840_Sense/variant.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#ifndef _SEEED_XIAO_NRF52840_SENSE_H_
#define _SEEED_XIAO_NRF52840_SENSE_H_

#define TARGET_SEEED_XIAO_NRF52840_SENSE

/** Master clock frequency */
#define VARIANT_MCK (64000000ul)

Expand Down

0 comments on commit 3ae21c3

Please sign in to comment.