Skip to content

Commit 92a5d16

Browse files
committed
Initial import
Signed-off-by: Thibaut VIARD <[email protected]>
1 parent d23c9dd commit 92a5d16

File tree

1,040 files changed

+290402
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,040 files changed

+290402
-1
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.h linguist-language=C

Makefile

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
#
2+
# ATMEL CMSIS headers Arduino IDE Module makefile.
3+
#
4+
# Copyright (c) 2015 Atmel Corp./Thibaut VIARD. All right reserved.
5+
#
6+
# This library is free software; you can redistribute it and/or
7+
# modify it under the terms of the GNU Lesser General Public
8+
# License as published by the Free Software Foundation; either
9+
# version 2.1 of the License, or (at your option) any later version.
10+
#
11+
# This library is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14+
# See the GNU Lesser General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU Lesser General Public
17+
# License along with this library; if not, write to the Free Software
18+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
#
20+
21+
SHELL = /bin/sh
22+
23+
.SUFFIXES: .tar.bz2
24+
25+
ROOT_PATH := .
26+
27+
PACKAGE_NAME := $(basename $(notdir $(CURDIR)))
28+
PACKAGE_VERSION := 1.0.0
29+
30+
# -----------------------------------------------------------------------------
31+
# packaging specific
32+
PACKAGE_FOLDER := module
33+
34+
ifeq (postpackaging,$(findstring $(MAKECMDGOALS),postpackaging))
35+
PACKAGE_FILENAME=$(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.bz2
36+
PACKAGE_CHKSUM := $(firstword $(shell sha256sum "$(PACKAGE_FILENAME)"))
37+
PACKAGE_SIZE := $(firstword $(shell wc -c "$(PACKAGE_FILENAME)"))
38+
endif
39+
40+
# end of packaging specific
41+
# -----------------------------------------------------------------------------
42+
43+
.PHONY: all clean print_info postpackaging
44+
45+
# Arduino module packaging:
46+
# - exclude version control system files, here git files and folders .git, .gitattributes and .gitignore
47+
# - exclude 'extras' folder
48+
all: clean print_info
49+
@echo ----------------------------------------------------------
50+
@echo "Packaging module."
51+
tar --transform "s|module|$(PACKAGE_NAME)-$(PACKAGE_VERSION)|g" --exclude=.gitattributes --exclude=.travis.yml --exclude-vcs -cjf "$(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.bz2" "$(PACKAGE_FOLDER)"
52+
$(MAKE) --no-builtin-rules postpackaging -C .
53+
@echo ----------------------------------------------------------
54+
55+
clean:
56+
@echo ----------------------------------------------------------
57+
@echo Cleanup
58+
-$(RM) $(PACKAGE_NAME)-*.tar.bz2 package_$(PACKAGE_NAME)_*.json test_package_$(PACKAGE_NAME)_*.json
59+
@echo ----------------------------------------------------------
60+
61+
print_info:
62+
@echo ----------------------------------------------------------
63+
@echo Building $(PACKAGE_NAME) using
64+
@echo "CURDIR = $(CURDIR)"
65+
@echo "OS = $(OS)"
66+
@echo "SHELL = $(SHELL)"
67+
@echo "PACKAGE_VERSION = $(PACKAGE_VERSION)"
68+
@echo "PACKAGE_NAME = $(PACKAGE_NAME)"
69+
70+
postpackaging:
71+
@echo "PACKAGE_CHKSUM = $(PACKAGE_CHKSUM)"
72+
@echo "PACKAGE_SIZE = $(PACKAGE_SIZE)"
73+
@echo "PACKAGE_FILENAME = $(PACKAGE_FILENAME)"
74+
cat extras/package_index.json.template | sed s/%%VERSION%%/$(PACKAGE_VERSION)/ | sed s/%%FILENAME%%/$(PACKAGE_FILENAME)/ | sed s/%%CHECKSUM%%/$(PACKAGE_CHKSUM)/ | sed s/%%SIZE%%/$(PACKAGE_SIZE)/ > package_$(PACKAGE_NAME)_$(PACKAGE_VERSION)_index.json
75+
cp package_$(PACKAGE_NAME)_$(PACKAGE_VERSION)_index.json test_package_$(PACKAGE_NAME)_$(PACKAGE_VERSION)_index.json
76+
@echo "package_$(PACKAGE_NAME)_$(PACKAGE_VERSION)_index.json created"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# ArduinoModule-CMSIS-Atmel
1+
# Atmel CMSIS Arduino IDE package
22
Atmel Smart ARM devices CMSIS module for Arduino IDE

extras/package_index.json.template

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"packages":
3+
[
4+
{
5+
"name": "Atmel SAM CMSIS headers",
6+
"maintainer": "Arduino",
7+
"email": "[email protected]",
8+
"tools":
9+
[
10+
{
11+
"name": "Atmel SAM headers",
12+
"version": "%%VERSION%%",
13+
"systems":
14+
[
15+
{
16+
"host": "i686-mingw32",
17+
"url": "https://github.com/sam-geek/ArduinoModule-CMSIS-Atmel/releases/download/v%%VERSION%%/%%FILENAME%%",
18+
"archiveFileName": "%%FILENAME%%",
19+
"checksum": "SHA-256:%%CHECKSUM%%",
20+
"size": "%%SIZE%%"
21+
},
22+
{
23+
"host": "x86_64-apple-darwin",
24+
"url": "https://github.com/sam-geek/ArduinoModule-CMSIS-Atmel/releases/download/v%%VERSION%%/%%FILENAME%%",
25+
"archiveFileName": "%%FILENAME%%",
26+
"checksum": "SHA-256:%%CHECKSUM%%",
27+
"size": "%%SIZE%%"
28+
},
29+
{
30+
"host": "x86_64-pc-linux-gnu",
31+
"url": "https://github.com/sam-geek/ArduinoModule-CMSIS-Atmel/releases/download/v%%VERSION%%/%%FILENAME%%",
32+
"archiveFileName": "%%FILENAME%%",
33+
"checksum": "SHA-256:%%CHECKSUM%%",
34+
"size": "%%SIZE%%"
35+
},
36+
{
37+
"host": "i686-pc-linux-gnu",
38+
"url": "https://github.com/sam-geek/ArduinoModule-CMSIS-Atmel/releases/download/v%%VERSION%%/%%FILENAME%%",
39+
"archiveFileName": "%%FILENAME%%",
40+
"checksum": "SHA-256:%%CHECKSUM%%",
41+
"size": "%%SIZE%%"
42+
},
43+
{
44+
"host": "all",
45+
"url": "https://github.com/sam-geek/ArduinoModule-CMSIS-Atmel/releases/download/v%%VERSION%%/%%FILENAME%%",
46+
"archiveFileName": "%%FILENAME%%",
47+
"checksum": "SHA-256:%%CHECKSUM%%",
48+
"size": "%%SIZE%%"
49+
}
50+
]
51+
}
52+
]
53+
}
54+
]
55+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
based on 6.2.0.1131 20150720

0 commit comments

Comments
 (0)