Skip to content

Commit

Permalink
Merge branch 'release/v3.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jul 16, 2018
2 parents a9d51c7 + b8255e1 commit 06bd428
Show file tree
Hide file tree
Showing 30 changed files with 39,138 additions and 49 deletions.
5 changes: 3 additions & 2 deletions boards/adafruit_circuitplayground_m0.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"build": {
"core": "samd",
"core": "adafruit",
"cpu": "cortex-m0plus",
"extra_flags": "-D__SAMD21G18A__ -DCRYSTALLESS -DARDUINO_ARCH_SAMD -DARDUINO_SAMD_ZERO -DADAFRUIT_CIRCUITPLAYGROUND_M0 -DARDUINO_SAMD_CIRCUITPLAYGROUND_EXPRESS ",
"extra_flags": "-D__SAMD21G18A__ -DCRYSTALLESS -DARM_MATH_CM0PLUS -DARDUINO_ARCH_SAMD -DARDUINO_SAMD_ZERO -DADAFRUIT_CIRCUITPLAYGROUND_M0 -DARDUINO_SAMD_CIRCUITPLAYGROUND_EXPRESS",
"f_cpu": "48000000L",
"hwids": [
[
Expand Down Expand Up @@ -40,6 +40,7 @@
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
Expand Down
3 changes: 2 additions & 1 deletion boards/adafruit_feather_m0.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"build": {
"core": "adafruit",
"cpu": "cortex-m0plus",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_SAMD_ZERO -DARDUINO_SAMD_FEATHER_M0 -D__SAMD21G18A__",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_SAMD_ZERO -DARDUINO_SAMD_FEATHER_M0 -DARM_MATH_CM0PLUS -D__SAMD21G18A__",
"f_cpu": "48000000L",
"hwids": [
[
Expand Down Expand Up @@ -41,6 +41,7 @@
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
Expand Down
3 changes: 2 additions & 1 deletion boards/adafruit_feather_m0_express.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"build": {
"core": "adafruit",
"cpu": "cortex-m0plus",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_SAMD_ZERO -DARDUINO_SAMD_FEATHER_M0 -DARDUINO_SAMD_FEATHER_M0_EXPRESS -D__SAMD21G18A__",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_SAMD_ZERO -DARDUINO_SAMD_FEATHER_M0 -DARDUINO_SAMD_FEATHER_M0_EXPRESS -DARM_MATH_CM0PLUS -D__SAMD21G18A__",
"f_cpu": "48000000L",
"hwids": [
[
Expand Down Expand Up @@ -41,6 +41,7 @@
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
Expand Down
58 changes: 58 additions & 0 deletions boards/adafruit_feather_m4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"build": {
"core": "adafruit",
"cpu": "cortex-m4",
"extra_flags": [
"-DARDUINO_ARCH_SAMD",
"-DARDUINO_FEATHER_M4",
"-DADAFRUIT_FEATHER_M4_EXPRESS",
"-D__SAMD51J19A__",
"-D__SAMD51__",
"-D__FPU_PRESENT",
"-DARM_MATH_CM4"
],
"f_cpu": "120000000L",
"hwids": [
[
"0x239A",
"0x8022"
],
[
"0x239A",
"0x0022"
]
],
"ldscript": "flash_with_bootloader.ld",
"mcu": "samd51j19a",
"system": "samd",
"usb_product": "Adafruit Feather M4",
"variant": "feather_m4"
},
"debug": {
"openocd_chipname": "at91samd51j19",
"svd_path": "ATSAMD51J19A.svd"
},
"frameworks": [
"arduino"
],
"name": "Adafruit Feather M4 (SAMD51)",
"upload": {
"disable_flushing": true,
"maximum_ram_size": 196608,
"maximum_size": 507904,
"native_usb": true,
"protocol": "sam-ba",
"protocols": [
"sam-ba",
"blackmagic",
"jlink",
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x4000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
"url": "https://www.adafruit.com/product/3857",
"vendor": "Adafruit"
}
3 changes: 2 additions & 1 deletion boards/adafruit_gemma_m0.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"build": {
"core": "adafruit",
"cpu": "cortex-m0plus",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_GEMMA_M0 -DCRYSTALLESS -DADAFRUIT_GEMMA_M0 -D__SAMD21E18A__",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_GEMMA_M0 -DARM_MATH_CM0PLUS -DCRYSTALLESS -DADAFRUIT_GEMMA_M0 -D__SAMD21E18A__",
"f_cpu": "48000000L",
"hwids": [
[
Expand Down Expand Up @@ -41,6 +41,7 @@
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
Expand Down
50 changes: 50 additions & 0 deletions boards/adafruit_itsybitsy_m0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"build": {
"core": "adafruit",
"cpu": "cortex-m0plus",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_ITSYBITSY_M0 -DADAFRUIT_ITSYBITSY_M0 -DCRYSTALLESS -DARM_MATH_CM0PLUS -D__SAMD21G18A__",
"f_cpu": "48000000L",
"hwids": [
[
"0x239A",
"0x800F"
],
[
"0x239A",
"0x000F"
]
],
"ldscript": "flash_with_bootloader.ld",
"mcu": "samd21g18a",
"system": "samd",
"usb_product": "ItsyBitsy M0 Express",
"variant": "itsybitsy_m0"
},
"debug": {
"openocd_chipname": "at91samd21g18",
"svd_path": "ATSAMD21G18A.svd"
},
"frameworks": [
"arduino"
],
"name": "Adafruit ItsyBitsy M0",
"upload": {
"disable_flushing": true,
"maximum_ram_size": 32768,
"maximum_size": 262144,
"native_usb": true,
"protocol": "sam-ba",
"protocols": [
"sam-ba",
"blackmagic",
"jlink",
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
"url": "https://www.adafruit.com/product/3727",
"vendor": "Adafruit"
}
59 changes: 59 additions & 0 deletions boards/adafruit_itsybitsy_m4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"build": {
"core": "adafruit",
"cpu": "cortex-m4",
"extra_flags": [
"-DARDUINO_ARCH_SAMD",
"-DARDUINO_ITSYBITSY_M4",
"-DADAFRUIT_ITSYBITSY_M4_EXPRESS",
"-D__SAMD51J19A__",
"-D__SAMD51__",
"-D__FPU_PRESENT",
"-DARM_MATH_CM4",
"-DCRYSTALLESS"
],
"f_cpu": "120000000L",
"hwids": [
[
"0x239A",
"0x802B"
],
[
"0x239A",
"0x002B"
]
],
"ldscript": "flash_with_bootloader.ld",
"mcu": "samd51j19a",
"system": "samd",
"usb_product": "Adafruit ItsyBitsy M4",
"variant": "itsybitsy_m4"
},
"debug": {
"openocd_chipname": "at91samd51j19",
"svd_path": "ATSAMD51J19A.svd"
},
"frameworks": [
"arduino"
],
"name": "Adafruit ItsyBitsy M4 (SAMD51)",
"upload": {
"disable_flushing": true,
"maximum_ram_size": 196608,
"maximum_size": 507904,
"native_usb": true,
"protocol": "sam-ba",
"protocols": [
"sam-ba",
"blackmagic",
"jlink",
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x4000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
"url": "https://www.adafruit.com/product/3800",
"vendor": "Adafruit"
}
3 changes: 2 additions & 1 deletion boards/adafruit_metro_m0.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"build": {
"core": "adafruit",
"cpu": "cortex-m0plus",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_SAMD_ZERO -DDADAFRUIT_METRO_M0_EXPRESS -D__SAMD21G18A__",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_SAMD_ZERO -DDADAFRUIT_METRO_M0_EXPRESS -DARM_MATH_CM0PLUS -D__SAMD21G18A__",
"f_cpu": "48000000L",
"hwids": [
[
Expand Down Expand Up @@ -41,6 +41,7 @@
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
Expand Down
58 changes: 58 additions & 0 deletions boards/adafruit_metro_m4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"build": {
"core": "adafruit",
"cpu": "cortex-m4",
"extra_flags": [
"-DARDUINO_ARCH_SAMD",
"-DARDUINO_METRO_M4",
"-DADAFRUIT_METRO_M4_EXPRESS",
"-D__SAMD51J19A__",
"-D__SAMD51__",
"-D__FPU_PRESENT",
"-DARM_MATH_CM4"
],
"f_cpu": "120000000L",
"hwids": [
[
"0x239A",
"0x8020"
],
[
"0x239A",
"0x0020"
]
],
"ldscript": "flash_with_bootloader.ld",
"mcu": "samd51j19a",
"system": "samd",
"usb_product": "Adafruit Metro M4",
"variant": "metro_m4"
},
"debug": {
"openocd_chipname": "at91samd51j19",
"svd_path": "ATSAMD51J19A.svd"
},
"frameworks": [
"arduino"
],
"name": "Adafruit Metro M4 (SAMD51)",
"upload": {
"disable_flushing": true,
"maximum_ram_size": 196608,
"maximum_size": 507904,
"native_usb": true,
"protocol": "sam-ba",
"protocols": [
"sam-ba",
"blackmagic",
"jlink",
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x4000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
"url": "https://www.adafruit.com/product/3382",
"vendor": "Adafruit"
}
50 changes: 50 additions & 0 deletions boards/adafruit_pirkey.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"build": {
"core": "adafruit",
"cpu": "cortex-m0plus",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_PIRKEY -DARM_MATH_CM0PLUS -DCRYSTALLESS -DADAFRUIT_PIRKEY -D__SAMD21E18A__",
"f_cpu": "48000000L",
"hwids": [
[
"0x239A",
"0x801E"
],
[
"0x239A",
"0x001E"
]
],
"ldscript": "flash_with_bootloader.ld",
"mcu": "samd21e18a",
"system": "samd",
"usb_product": "pIRKey",
"variant": "pirkey"
},
"debug": {
"openocd_chipname": "at91samd21e18",
"svd_path": "ATSAMD21E18A.svd"
},
"frameworks": [
"arduino"
],
"name": "Adafruit pIRkey",
"upload": {
"disable_flushing": true,
"maximum_ram_size": 32768,
"maximum_size": 262144,
"native_usb": true,
"protocol": "sam-ba",
"protocols": [
"sam-ba",
"blackmagic",
"jlink",
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
"url": "https://www.adafruit.com/product/3364",
"vendor": "Adafruit"
}
3 changes: 2 additions & 1 deletion boards/adafruit_trinket_m0.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"build": {
"core": "adafruit",
"cpu": "cortex-m0plus",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_TRINKET_M0 -DCRYSTALLESS -DADAFRUIT_TRINKET_M0 -D__SAMD21E18A__",
"extra_flags": "-DARDUINO_ARCH_SAMD -DARDUINO_TRINKET_M0 -DCRYSTALLESS -DADAFRUIT_TRINKET_M0 -DARM_MATH_CM0PLUS -D__SAMD21E18A__",
"f_cpu": "48000000L",
"hwids": [
[
Expand Down Expand Up @@ -41,6 +41,7 @@
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
Expand Down
1 change: 1 addition & 0 deletions boards/mkr1000USB.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
Expand Down
1 change: 1 addition & 0 deletions boards/mkrfox1200.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"atmel-ice"
],
"require_upload_port": true,
"section_start": "0x2000",
"use_1200bps_touch": true,
"wait_for_upload_port": true
},
Expand Down
Loading

0 comments on commit 06bd428

Please sign in to comment.