Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "ARM_CMSIS"]
path = CMSIS
url = git@github.com:ARM-software/CMSIS.git
[submodule "CMSIS_5"]
path = CMSIS_5
url = git@github.com:ARM-software/CMSIS_5.git
1 change: 1 addition & 0 deletions CMSIS_5
Submodule CMSIS_5 added at a82c29
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ ROOT_PATH := .

#PACKAGE_NAME := $(basename $(notdir $(CURDIR)))
PACKAGE_NAME := "CMSIS"
PACKAGE_VERSION := 4.5.0
PACKAGE_VERSION := 5.5.0

# -----------------------------------------------------------------------------
# packaging specific
PACKAGE_FOLDER := CMSIS
PACKAGE_FOLDER := CMSIS_5

ifeq (postpackaging,$(findstring $(MAKECMDGOALS),postpackaging))
PACKAGE_FILENAME=$(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.bz2
Expand All @@ -51,11 +51,14 @@ all: clean print_info
@echo "Packaging module."
tar --exclude=./.gitattributes \
--exclude=./.travis.yml \
--exclude=docs \
--exclude=CMSIS/index.html \
--exclude=CMSIS/Documentation \
--exclude=CMSIS/DoxyGen \
--exclude=CMSIS/NN/Examples \
--exclude=CMSIS/Pack \
--exclude=CMSIS/Utilities \
--exclude=CMSIS/DSP_Lib/Examples \
--exclude=CMSIS/DSP/Examples \
--exclude=Device/ARM/Documents \
--exclude=.git \
-cjf "$(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.bz2" "$(PACKAGE_FOLDER)"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ArduinoModule-CMSIS
ARM CMSIS module for Arduino IDE

Source is the one provided by ARM at https://github.com/ARM-software/CMSIS/
Source is the one provided by ARM at https://github.com/ARM-software/CMSIS_5/

Main CMSIS URL is http://www.arm.com/products/processors/cortex-m/cortex-microcontroller-software-interface-standard.php

Expand Down