sam: add support for Atmel SAMD21 based ItsyBitsy M0

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans
2019-01-13 21:45:18 +01:00
committed by Ayke van Laethem
parent 1f511786d3
commit e2be7ccf76
8 changed files with 393 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"inherits": ["cortex-m"],
"llvm-target": "armv6m-none-eabi",
"build-tags": ["atsamd21g18", "sam"],
"cflags": [
"--target=armv6m-none-eabi",
"-Qunused-arguments"
],
"ldflags": [
"-T", "targets/atsamd21g18.ld"
],
"extra-files": [
"src/device/sam/atsamd21g18a.s"
]
}