-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
297 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "nrf52_xxaa.ld" | ||
}, | ||
"core": "nRF5", | ||
"cpu": "cortex-m4", | ||
"extra_flags": "-DARDUINO_ELECTRONUT_BLUEY -D__STACK_SIZE=204", | ||
"f_cpu": "64000000L", | ||
"mcu": "nrf52832_xxaa", | ||
"variant": "bluey" | ||
}, | ||
"connectivity": [ | ||
"bluetooth" | ||
], | ||
"debug": { | ||
"jlink_device": "nRF52832_xxAA", | ||
"svd_path": "nrf52.svd" | ||
}, | ||
"frameworks": [ | ||
"arduino" | ||
], | ||
"name": "Bluey nRF52832 IoT", | ||
"upload": { | ||
"maximum_ram_size": 65536, | ||
"maximum_size": 524288, | ||
"protocol": "jlink", | ||
"protocols": [ | ||
"jlink", | ||
"nrfjprog", | ||
"stlink", | ||
"cmsis-dap", | ||
"blackmagic" | ||
] | ||
}, | ||
"url": "https://electronut.in/portfolio/bluey/", | ||
"vendor": "Electronut Labs" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "nrf52_xxaa.ld" | ||
}, | ||
"core": "nRF5", | ||
"cpu": "cortex-m4", | ||
"extra_flags": "-DARDUINO_ELECTRONUT_HACKABLE -D__STACK_SIZE=2048", | ||
"f_cpu": "64000000L", | ||
"mcu": "nrf52832_xxaa", | ||
"variant": "hackaBLE" | ||
}, | ||
"connectivity": [ | ||
"bluetooth" | ||
], | ||
"debug": { | ||
"jlink_device": "nRF52832_xxAA", | ||
"svd_path": "nrf52.svd" | ||
}, | ||
"frameworks": [ | ||
"arduino" | ||
], | ||
"name": "hackaBLE", | ||
"upload": { | ||
"maximum_ram_size": 65536, | ||
"maximum_size": 524288, | ||
"protocol": "jlink", | ||
"protocols": [ | ||
"jlink", | ||
"nrfjprog", | ||
"stlink", | ||
"cmsis-dap", | ||
"blackmagic" | ||
] | ||
}, | ||
"url": "https://electronut.in/portfolio/hackaBLE/", | ||
"vendor": "Electronut Labs" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "nrf52_xxaa.ld" | ||
}, | ||
"core": "nRF5", | ||
"cpu": "cortex-m4", | ||
"extra_flags": "-DARDUINO_ELECTRONUT_HACKABLE -D__STACK_SIZE=2048", | ||
"f_cpu": "64000000L", | ||
"mcu": "nrf52832_xxaa", | ||
"variant": "hackaBLE_v2" | ||
}, | ||
"connectivity": [ | ||
"bluetooth" | ||
], | ||
"debug": { | ||
"jlink_device": "nRF52832_xxAA", | ||
"svd_path": "nrf52.svd" | ||
}, | ||
"frameworks": [ | ||
"arduino" | ||
], | ||
"name": "hackaBLE_v2", | ||
"upload": { | ||
"maximum_ram_size": 65536, | ||
"maximum_size": 524288, | ||
"protocol": "jlink", | ||
"protocols": [ | ||
"jlink", | ||
"nrfjprog", | ||
"stlink", | ||
"cmsis-dap", | ||
"blackmagic" | ||
] | ||
}, | ||
"url": "https://electronut.in/portfolio/hackaBLE/", | ||
"vendor": "Electronut Labs" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "nrf52840_xxaa.ld" | ||
}, | ||
"core": "nRF5", | ||
"cpu": "cortex-m4", | ||
"extra_flags": "-DARDUINO_NRF52_DK -D__STACK_SIZE=2048", | ||
"f_cpu": "64000000L", | ||
"mcu": "nrf52840_xxaa", | ||
"variant": "nRF52840_DK" | ||
}, | ||
"connectivity": [ | ||
"bluetooth" | ||
], | ||
"debug": { | ||
"default_tools": [ | ||
"jlink" | ||
], | ||
"jlink_device": "nRF52840_xxAA", | ||
"onboard_tools": [ | ||
"cmsis-dap", | ||
"jlink" | ||
], | ||
"svd_path": "nrf52840.svd" | ||
}, | ||
"frameworks": [ | ||
"arduino" | ||
], | ||
"name": "Nordic nRF52840-DK", | ||
"upload": { | ||
"maximum_ram_size": 262144, | ||
"maximum_size": 1048576, | ||
"protocol": "jlink", | ||
"protocols": [ | ||
"jlink", | ||
"nrfjprog", | ||
"stlink", | ||
"blackmagic", | ||
"cmsis-dap" | ||
] | ||
}, | ||
"url": "https://www.nordicsemi.com/Products/Development-hardware/nRF52840-DK", | ||
"vendor": "Nordic" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "nrf52_xxaa.ld" | ||
}, | ||
"core": "nRF5", | ||
"cpu": "cortex-m4", | ||
"extra_flags": "-DARDUINO_RB_BLE_NANO_2 -D__STACK_SIZE=2048", | ||
"f_cpu": "64000000L", | ||
"mcu": "nrf52832_xxaa", | ||
"variant": "RedBear_BLENano2" | ||
}, | ||
"connectivity": [ | ||
"bluetooth" | ||
], | ||
"debug": { | ||
"jlink_device": "nRF52832_xxAA", | ||
"onboard_tools": [ | ||
"cmsis-dap" | ||
], | ||
"svd_path": "nrf52.svd" | ||
}, | ||
"frameworks": [ | ||
"arduino" | ||
], | ||
"name": "RedBearLab BLE Nano 2", | ||
"upload": { | ||
"maximum_ram_size": 65536, | ||
"maximum_size": 524288, | ||
"protocol": "cmsis-dap", | ||
"protocols": [ | ||
"jlink", | ||
"nrfjprog", | ||
"stlink", | ||
"blackmagic", | ||
"cmsis-dap" | ||
] | ||
}, | ||
"url": "https://redbear.cc/product/ble-nano-2-soldered.html", | ||
"vendor": "RedBearLab" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "nrf52_xxaa.ld" | ||
}, | ||
"core": "nRF5", | ||
"cpu": "cortex-m4", | ||
"extra_flags": "-DARDUINO_RB_BLEND_2 -D__STACK_SIZE=2048", | ||
"f_cpu": "64000000L", | ||
"mcu": "nrf52832_xxaa", | ||
"variant": "RedBear_Blend2" | ||
}, | ||
"connectivity": [ | ||
"bluetooth" | ||
], | ||
"debug": { | ||
"jlink_device": "nRF52832_xxAA", | ||
"onboard_tools": [ | ||
"cmsis-dap" | ||
], | ||
"svd_path": "nrf52.svd" | ||
}, | ||
"frameworks": [ | ||
"arduino" | ||
], | ||
"name": "RedBearLab Blend 2", | ||
"upload": { | ||
"maximum_ram_size": 65536, | ||
"maximum_size": 524288, | ||
"protocol": "cmsis-dap", | ||
"protocols": [ | ||
"jlink", | ||
"nrfjprog", | ||
"stlink", | ||
"blackmagic", | ||
"cmsis-dap" | ||
] | ||
}, | ||
"url": "https://redbear.cc/product/ble/blend-2.html", | ||
"vendor": "RedBearLab" | ||
} |
File renamed without changes.
Oops, something went wrong.