From c099eea85ac6fea64634837753baa37fcf329559 Mon Sep 17 00:00:00 2001 From: Sandeep Mistry Date: Wed, 20 Mar 2019 17:24:32 -0400 Subject: [PATCH] Update to CMSIS 5.5.0 --- .gitmodules | 6 +++--- CMSIS_5 | 1 + Makefile | 9 ++++++--- README.md | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) create mode 160000 CMSIS_5 diff --git a/.gitmodules b/.gitmodules index 88f0084..1719e8d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -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 diff --git a/CMSIS_5 b/CMSIS_5 new file mode 160000 index 0000000..a82c293 --- /dev/null +++ b/CMSIS_5 @@ -0,0 +1 @@ +Subproject commit a82c293bfb9f07285dcdf93507e5559acc0f92af diff --git a/Makefile b/Makefile index 65b82fb..e4b5cd9 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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)" diff --git a/README.md b/README.md index 9348f1b..64f4cb2 100644 --- a/README.md +++ b/README.md @@ -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