Skip to content

Commit 507a529

Browse files
committed
Update mzero variant to 1.6.10 compliance
1 parent 5136981 commit 507a529

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

variants/arduino_mzero/linker_scripts/gcc/flash_with_bootloader.ld

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ SECTIONS
4747
{
4848
.text :
4949
{
50+
__text_start__ = .;
51+
5052
KEEP(*(.isr_vector))
5153
*(.text*)
5254

variants/arduino_mzero/linker_scripts/gcc/flash_without_bootloader.ld

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ SECTIONS
4747
{
4848
.text :
4949
{
50+
__text_start__ = .;
51+
5052
KEEP(*(.isr_vector))
5153
*(.text*)
5254

variants/arduino_mzero/variant.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
#ifndef _VARIANT_ARDUINO_ZERO_
2020
#define _VARIANT_ARDUINO_ZERO_
2121

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

2525
/*----------------------------------------------------------------------------
2626
* Definitions

0 commit comments

Comments
 (0)