Skip to content

Commit 59cdbd5

Browse files
committed
Update Adafruit CircuitPlay to 1.6.10 compliance
1 parent 95963e6 commit 59cdbd5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

variants/circuitplay/linker_scripts/gcc/flash_with_bootloader.ld

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ SECTIONS
6565
{
6666
.text :
6767
{
68+
__text_start__ = .;
69+
6870
KEEP(*(.isr_vector))
6971
*(.text*)
7072

variants/circuitplay/linker_scripts/gcc/flash_without_bootloader.ld

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ SECTIONS
6666
{
6767
.text :
6868
{
69+
__text_start__ = .;
70+
6971
KEEP(*(.isr_vector))
7072
*(.text*)
7173

variants/circuitplay/variant.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
#pragma once
2020

21-
// The definitions here needs a SAMD core >=1.6.6
22-
#define ARDUINO_SAMD_VARIANT_COMPLIANCE 10606
21+
// The definitions here needs a SAMD core >=1.6.10
22+
#define ARDUINO_SAMD_VARIANT_COMPLIANCE 10610
2323

2424

2525
#include <WVariant.h>

0 commit comments

Comments
 (0)