diff --git a/4up image.jpg b/4up image.jpg old mode 100755 new mode 100644 diff --git a/CHANGELOG b/CHANGELOG index 179e5fb..3611110 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,15 @@ CHANGELOG +v 2.3.3 + - Enable C++11 support (thanks focalintent) + - Fix Print::printf("%f") with correct digits (thanks ShenggaoZhu) + - Added radioActive check to flashPageErase + +v 2.3.2 + - Fixes required to support Arduino 1.6.6 + - Updated to the latest RFDLoaders + - Use the RFDLoaders in the RFduino directory (instead of installing seperately in tools) + v 2.3.1 - RFduino linux native support (test install on Ubuntu 14.04 32bit & 64bit, Fedora 21, OpenSUSE 13.2) diff --git a/README.md b/README.md index ab63850..6964b68 100644 --- a/README.md +++ b/README.md @@ -4,30 +4,41 @@ [Video](http://www.youtube.com/watch?v=arWBdGwCJcM) +## Communicating with us + +The best way to communiate with us is on the [RFduino Forum](http://forum.RFduino.com). + ## Installation * Get the [RFduino hardware](http://RFduino.com). * Install the [FTDI drivers](http://www.ftdichip.com/Drivers/VCP.htm). -* Download [Arduino 1.6.3](http://arduino.cc/en/Main/Software) on newer. +* Download [Arduino 1.6.6](http://arduino.cc/en/Main/Software) or newer. * _Mac OS X_: Requires Java 6 to be installed. Available [here](https://support.apple.com/kb/DL1572?locale=en_US). + * Note: The default Package in Ubuntu 16.04 is to old 1.5.3 and does not support adding hardware support. * Open Arduino - * edit preferences, and add rfduino.com as the Server (HTTP) under Proxy Settings and save. + * Edit Preferences, and add ```http://rfduino.com/package_rfduino166_index.json``` to Additional Board Manager URLs and save. ![preferences](preferences.png) - * Open the Boards Manager under Tools->Board menu. + * Open the Boards Manager under ```Tools->Board``` menu. * Select the RFduino package at the end of the list, and click Install to install it. - * Your new board will now show up in the Tools->Board menu. + * Your new board will now show up in the ```Tools->Board``` menu. Select the board and port, and you're ready to go! +Note: Arduino may not start properly if another version has been previously installed and the Preferences are incompatible. You can reset the Preferences by deleting the following directory: +* _Windows_: %appdata%/Arduino15 (open File Explorer, enter %appdata% into the Address Bar and press Enter) +* _Mac OS X_: ~/Library/Arduino15 (open Finder, and ```Go->Go to Folder```) +* _Linux_: ~/.arduino15 + ## Linux ``` // FTDI drivers are not needed (they are built into the kernel) -wget http://downloads.arduino.cc/arduino-1.6.3-linux64.tar.xz -tar -xf arduino-1.6.3-linux64.tar.xz + +wget http://downloads.arduino.cc/arduino-1.6.6-linux64.tar.xz +tar -xf arduino-1.6.6-linux64.tar.xz Ubuntu: sudo apt-get install default-jre Fedora: sudo yum install jre @@ -41,11 +52,11 @@ sudo usermod -aG dialout * Attach the USB shield -* Select RFduino from the ```Tools/Board``` menu +* Select RFduino from the ```Tools->Board``` menu -* Select the port from the ```Tools/Port``` menu +* Select the port from the ```Tools->Port``` menu -* Select an example from the ```Files/Examples/RFduinoNonBLE``` or ```Files/Examples/RFduinoBLE``` directory +* Select an example from the ```File->Examples->RFduinoNonBLE``` or ```File->Examples-?RFduinoBLE``` directory * Select ```Upload``` to compile, upload and execute the sketch @@ -56,7 +67,3 @@ sudo usermod -aG dialout ## RFduinoApps Check out the [RFduinoApps](http://github.com/RFduino/RFduinoApps) repository for iPhone App source code & RFduino to Raspberry Pi integration projects. - -# Communicating with us - -The best way to communiate with us is on the [RFduino Forum](http://forum.RFduino.com). diff --git a/RFDLoader b/RFDLoader deleted file mode 100755 index 992224a..0000000 Binary files a/RFDLoader and /dev/null differ diff --git a/RFDLoader.exe b/RFDLoader.exe index 1b764b5..39fd02e 100644 Binary files a/RFDLoader.exe and b/RFDLoader.exe differ diff --git a/RFDLoader32 b/RFDLoader32 deleted file mode 100644 index bd41c16..0000000 Binary files a/RFDLoader32 and /dev/null differ diff --git a/RFDLoader32_linux b/RFDLoader32_linux old mode 100644 new mode 100755 index a998528..71553f9 Binary files a/RFDLoader32_linux and b/RFDLoader32_linux differ diff --git a/RFDLoader32_osx b/RFDLoader32_osx old mode 100644 new mode 100755 index 01c98e1..bbca309 Binary files a/RFDLoader32_osx and b/RFDLoader32_osx differ diff --git a/RFDLoader_linux b/RFDLoader_linux old mode 100644 new mode 100755 index 2207949..c5113a3 Binary files a/RFDLoader_linux and b/RFDLoader_linux differ diff --git a/RFDLoader_osx b/RFDLoader_osx old mode 100644 new mode 100755 index 0caf039..8cb0c26 Binary files a/RFDLoader_osx and b/RFDLoader_osx differ diff --git a/RFDLoader_pi b/RFDLoader_pi old mode 100644 new mode 100755 index da90448..f656b43 Binary files a/RFDLoader_pi and b/RFDLoader_pi differ diff --git a/cores/arduino/HardwareSerial.h b/cores/arduino/HardwareSerial.h old mode 100755 new mode 100644 diff --git a/cores/arduino/Memory.c b/cores/arduino/Memory.c old mode 100755 new mode 100644 index 3325acc..462f2a5 --- a/cores/arduino/Memory.c +++ b/cores/arduino/Memory.c @@ -48,6 +48,10 @@ int flashPageErase( uint8_t page ) if (page <= PAGE_FROM_ADDRESS(&_etextrelocate)) return 2; + // do not erase flash if the BLE radio is active + while (RFduinoBLE_radioActive) + ; + // enable flash page erase NRF_NVMC->CONFIG = (NVMC_CONFIG_WEN_Een << NVMC_CONFIG_WEN_Pos); while (NRF_NVMC->READY == NVMC_READY_READY_Busy) @@ -79,7 +83,7 @@ int flashWrite( uint32_t *address, uint32_t value ) if (page <= PAGE_FROM_ADDRESS(&_etextrelocate)) return 2; - // do not write to flash in the BLE radio is active + // do not write to flash if the BLE radio is active while (RFduinoBLE_radioActive) ; diff --git a/cores/arduino/Memory.h b/cores/arduino/Memory.h old mode 100755 new mode 100644 diff --git a/cores/arduino/Print.cpp b/cores/arduino/Print.cpp index f3749fe..eb65413 100644 --- a/cores/arduino/Print.cpp +++ b/cores/arduino/Print.cpp @@ -346,6 +346,9 @@ size_t Print::printf(const char *format, ...) if (l < 1) l = -l; l %= 100; + if(l < 10){ + n += print(0); + } n += print(l); } } diff --git a/cores/arduino/Printable.h b/cores/arduino/Printable.h old mode 100755 new mode 100644 diff --git a/cores/arduino/RingBuffer.cpp b/cores/arduino/RingBuffer.cpp old mode 100755 new mode 100644 diff --git a/cores/arduino/Stream.cpp b/cores/arduino/Stream.cpp old mode 100755 new mode 100644 diff --git a/cores/arduino/Stream.h b/cores/arduino/Stream.h old mode 100755 new mode 100644 diff --git a/cores/arduino/Tone.cpp b/cores/arduino/Tone.cpp old mode 100755 new mode 100644 diff --git a/cores/arduino/Tone.h b/cores/arduino/Tone.h old mode 100755 new mode 100644 diff --git a/cores/arduino/USARTClass.h b/cores/arduino/USARTClass.h old mode 100755 new mode 100644 diff --git a/cores/arduino/WCharacter.h b/cores/arduino/WCharacter.h old mode 100755 new mode 100644 diff --git a/cores/arduino/WMath.cpp b/cores/arduino/WMath.cpp old mode 100755 new mode 100644 diff --git a/cores/arduino/WMath.h b/cores/arduino/WMath.h old mode 100755 new mode 100644 diff --git a/cores/arduino/WString.cpp b/cores/arduino/WString.cpp old mode 100755 new mode 100644 diff --git a/cores/arduino/binary.h b/cores/arduino/binary.h old mode 100755 new mode 100644 diff --git a/cores/arduino/hooks.c b/cores/arduino/hooks.c old mode 100755 new mode 100644 diff --git a/cores/arduino/itoa.c b/cores/arduino/itoa.c old mode 100755 new mode 100644 diff --git a/cores/arduino/itoa.h b/cores/arduino/itoa.h old mode 100755 new mode 100644 diff --git a/cores/arduino/main.cpp b/cores/arduino/main.cpp old mode 100755 new mode 100644 diff --git a/cores/arduino/syscalls.h b/cores/arduino/syscalls.h old mode 100755 new mode 100644 diff --git a/cores/arduino/wiring.c b/cores/arduino/wiring.c old mode 100755 new mode 100644 diff --git a/cores/arduino/wiring.h b/cores/arduino/wiring.h old mode 100755 new mode 100644 diff --git a/cores/arduino/wiring_constants.h b/cores/arduino/wiring_constants.h old mode 100755 new mode 100644 diff --git a/cores/arduino/wiring_digital.c b/cores/arduino/wiring_digital.c old mode 100755 new mode 100644 diff --git a/cores/arduino/wiring_digital.h b/cores/arduino/wiring_digital.h old mode 100755 new mode 100644 diff --git a/cores/arduino/wiring_pulse.cpp b/cores/arduino/wiring_pulse.cpp old mode 100755 new mode 100644 diff --git a/cores/arduino/wiring_pulse.h b/cores/arduino/wiring_pulse.h old mode 100755 new mode 100644 diff --git a/cores/arduino/wiring_shift.c b/cores/arduino/wiring_shift.c old mode 100755 new mode 100644 diff --git a/cores/arduino/wiring_shift.h b/cores/arduino/wiring_shift.h old mode 100755 new mode 100644 diff --git a/docs.png b/docs.png deleted file mode 100644 index f0d557e..0000000 Binary files a/docs.png and /dev/null differ diff --git a/libraries/RFduinoBLE/examples/BulkDataTransfer/BulkDataTransfer.ino b/libraries/RFduinoBLE/examples/BulkDataTransfer/BulkDataTransfer.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoBLE/examples/ProximityMovingAverage/ProximityMovingAverage.ino b/libraries/RFduinoBLE/examples/ProximityMovingAverage/ProximityMovingAverage.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/RFduinoNonBLE.cpp b/libraries/RFduinoNonBLE/RFduinoNonBLE.cpp new file mode 100644 index 0000000..e69de29 diff --git a/libraries/RFduinoNonBLE/RFduinoNonBLE.h b/libraries/RFduinoNonBLE/RFduinoNonBLE.h new file mode 100644 index 0000000..e69de29 diff --git a/libraries/RFduinoNonBLE/examples/01.Basics/AnalogReadSerial/AnalogReadSerial.ino b/libraries/RFduinoNonBLE/examples/01.Basics/AnalogReadSerial/AnalogReadSerial.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/01.Basics/BareMinimum/BareMinimum.ino b/libraries/RFduinoNonBLE/examples/01.Basics/BareMinimum/BareMinimum.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/01.Basics/Blink/Blink.ino b/libraries/RFduinoNonBLE/examples/01.Basics/Blink/Blink.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/01.Basics/DigitalReadSerial/DigitalReadSerial.ino b/libraries/RFduinoNonBLE/examples/01.Basics/DigitalReadSerial/DigitalReadSerial.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/01.Basics/Fade/Fade.ino b/libraries/RFduinoNonBLE/examples/01.Basics/Fade/Fade.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/01.Basics/ReadAnalogVoltage/ReadAnalogVoltage.ino b/libraries/RFduinoNonBLE/examples/01.Basics/ReadAnalogVoltage/ReadAnalogVoltage.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.ino b/libraries/RFduinoNonBLE/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/Button/Button.ino b/libraries/RFduinoNonBLE/examples/02.Digital/Button/Button.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/Debounce/Debounce.ino b/libraries/RFduinoNonBLE/examples/02.Digital/Debounce/Debounce.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/DigitalInputPullup/DigitalInputPullup.ino b/libraries/RFduinoNonBLE/examples/02.Digital/DigitalInputPullup/DigitalInputPullup.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino b/libraries/RFduinoNonBLE/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/toneKeyboard/pitches.h b/libraries/RFduinoNonBLE/examples/02.Digital/toneKeyboard/pitches.h old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/toneKeyboard/toneKeyboard.ino b/libraries/RFduinoNonBLE/examples/02.Digital/toneKeyboard/toneKeyboard.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/toneMelody/pitches.h b/libraries/RFduinoNonBLE/examples/02.Digital/toneMelody/pitches.h old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/toneMelody/toneMelody.ino b/libraries/RFduinoNonBLE/examples/02.Digital/toneMelody/toneMelody.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/toneMultiple/pitches.h b/libraries/RFduinoNonBLE/examples/02.Digital/toneMultiple/pitches.h old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/toneMultiple/toneMultiple.ino b/libraries/RFduinoNonBLE/examples/02.Digital/toneMultiple/toneMultiple.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino b/libraries/RFduinoNonBLE/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.ino b/libraries/RFduinoNonBLE/examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/03.Analog/AnalogInput/AnalogInput.ino b/libraries/RFduinoNonBLE/examples/03.Analog/AnalogInput/AnalogInput.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/03.Analog/AnalogWrite/AnalogWrite.ino b/libraries/RFduinoNonBLE/examples/03.Analog/AnalogWrite/AnalogWrite.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/03.Analog/Calibration/Calibration.ino b/libraries/RFduinoNonBLE/examples/03.Analog/Calibration/Calibration.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/03.Analog/Fading/Fading.ino b/libraries/RFduinoNonBLE/examples/03.Analog/Fading/Fading.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/03.Analog/Smoothing/Smoothing.ino b/libraries/RFduinoNonBLE/examples/03.Analog/Smoothing/Smoothing.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/04.Communication/ASCIITable/ASCIITable.ino b/libraries/RFduinoNonBLE/examples/04.Communication/ASCIITable/ASCIITable.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/04.Communication/Dimmer/Dimmer.ino b/libraries/RFduinoNonBLE/examples/04.Communication/Dimmer/Dimmer.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/04.Communication/Graph/Graph.ino b/libraries/RFduinoNonBLE/examples/04.Communication/Graph/Graph.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/04.Communication/PhysicalPixel/PhysicalPixel.ino b/libraries/RFduinoNonBLE/examples/04.Communication/PhysicalPixel/PhysicalPixel.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/04.Communication/ReadASCIIString/ReadASCIIString.ino b/libraries/RFduinoNonBLE/examples/04.Communication/ReadASCIIString/ReadASCIIString.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino b/libraries/RFduinoNonBLE/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino b/libraries/RFduinoNonBLE/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/04.Communication/SerialEvent/SerialEvent.ino b/libraries/RFduinoNonBLE/examples/04.Communication/SerialEvent/SerialEvent.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.ino b/libraries/RFduinoNonBLE/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/05.Control/Arrays/Arrays.ino b/libraries/RFduinoNonBLE/examples/05.Control/Arrays/Arrays.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/05.Control/ForLoopIteration/ForLoopIteration.ino b/libraries/RFduinoNonBLE/examples/05.Control/ForLoopIteration/ForLoopIteration.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/05.Control/IfStatementConditional/IfStatementConditional.ino b/libraries/RFduinoNonBLE/examples/05.Control/IfStatementConditional/IfStatementConditional.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino b/libraries/RFduinoNonBLE/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/05.Control/switchCase/switchCase.ino b/libraries/RFduinoNonBLE/examples/05.Control/switchCase/switchCase.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/05.Control/switchCase2/switchCase2.ino b/libraries/RFduinoNonBLE/examples/05.Control/switchCase2/switchCase2.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/06.Sensors/Knock/Knock.ino b/libraries/RFduinoNonBLE/examples/06.Sensors/Knock/Knock.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/07.Display/barGraph/barGraph.ino b/libraries/RFduinoNonBLE/examples/07.Display/barGraph/barGraph.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/CharacterAnalysis/CharacterAnalysis.ino b/libraries/RFduinoNonBLE/examples/08.Strings/CharacterAnalysis/CharacterAnalysis.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringCharacters/StringCharacters.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringCharacters/StringCharacters.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringConstructors/StringConstructors.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringConstructors/StringConstructors.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringIndexOf/StringIndexOf.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringIndexOf/StringIndexOf.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringLength/StringLength.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringLength/StringLength.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringReplace/StringReplace.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringReplace/StringReplace.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringSubstring/StringSubstring.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringSubstring/StringSubstring.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringToInt/StringToInt.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringToInt/StringToInt.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/08.Strings/StringToIntRGB/StringToIntRGB.ino b/libraries/RFduinoNonBLE/examples/08.Strings/StringToIntRGB/StringToIntRGB.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/Flash/FlashButtonUpdate/FlashButtonUpdate.ino b/libraries/RFduinoNonBLE/examples/Flash/FlashButtonUpdate/FlashButtonUpdate.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/Flash/FlashButtonUpdate2/FlashButtonUpdate2.ino b/libraries/RFduinoNonBLE/examples/Flash/FlashButtonUpdate2/FlashButtonUpdate2.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/Flash/FlashInteger/FlashInteger.ino b/libraries/RFduinoNonBLE/examples/Flash/FlashInteger/FlashInteger.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/Flash/FlashStaticTable/FlashStaticTable.ino b/libraries/RFduinoNonBLE/examples/Flash/FlashStaticTable/FlashStaticTable.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/examples/Flash/FlashStructure/FlashStructure.ino b/libraries/RFduinoNonBLE/examples/Flash/FlashStructure/FlashStructure.ino old mode 100755 new mode 100644 diff --git a/libraries/RFduinoNonBLE/keywords.txt b/libraries/RFduinoNonBLE/keywords.txt old mode 100755 new mode 100644 diff --git a/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.pde b/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.pde old mode 100755 new mode 100644 diff --git a/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.pde b/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.pde old mode 100755 new mode 100644 diff --git a/libraries/SPI/keywords.txt b/libraries/SPI/keywords.txt old mode 100755 new mode 100644 diff --git a/libraries/Servo/examples/Knob/Knob.ino b/libraries/Servo/examples/Knob/Knob.ino old mode 100755 new mode 100644 diff --git a/libraries/Servo/examples/Sweep/Sweep.ino b/libraries/Servo/examples/Sweep/Sweep.ino old mode 100755 new mode 100644 diff --git a/libraries/Servo/keywords.txt b/libraries/Servo/keywords.txt old mode 100755 new mode 100644 diff --git a/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.pde b/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.pde old mode 100755 new mode 100644 diff --git a/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.pde b/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.pde old mode 100755 new mode 100644 diff --git a/libraries/Wire/examples/master_reader/master_reader.pde b/libraries/Wire/examples/master_reader/master_reader.pde old mode 100755 new mode 100644 diff --git a/libraries/Wire/examples/master_writer/master_writer.pde b/libraries/Wire/examples/master_writer/master_writer.pde old mode 100755 new mode 100644 diff --git a/libraries/Wire/examples/slave_receiver/slave_receiver.pde b/libraries/Wire/examples/slave_receiver/slave_receiver.pde old mode 100755 new mode 100644 diff --git a/libraries/Wire/examples/slave_sender/slave_sender.pde b/libraries/Wire/examples/slave_sender/slave_sender.pde old mode 100755 new mode 100644 diff --git a/libraries/Wire/keywords.txt b/libraries/Wire/keywords.txt old mode 100755 new mode 100644 diff --git a/platform.txt b/platform.txt index b2d1df3..5ed54f5 100644 --- a/platform.txt +++ b/platform.txt @@ -2,23 +2,24 @@ # RFduino compile variables # ------------------------- -# arduino 1.6.1 -#compiler.path={runtime.ide.path}/hardware/tools/gcc-arm-none-eabi-4.8.3-2014q1/bin/ -#tools.RFDLoader.path={runtime.ide.path}/hardware/arduino/RFduino - -# arduino 1.6.3 -compiler.path={runtime.tools.arm-none-eabi-gcc.path}/bin/ -tools.RFDLoader.path={runtime.tools.RFDLoader.path} +# arduino 1.6.3: +# {runtime.ide.path} => {runtime.tools.arm-none-eabi-gcc.path} +# arduino 1.6.6: +# {build.path}/{archive_file} => {archive_file_path} +# {build.path}/syscalls.c.o => {build.path}/core/syscalls.c.o name=RFduino Boards +# version=1.0.0 + +compiler.path={runtime.tools.arm-none-eabi-gcc.path}/bin/ compiler.c.cmd=arm-none-eabi-gcc -compiler.c.flags=-c -g -Os -w -ffunction-sections -fdata-sections -fno-builtin -MMD +compiler.c.flags=-c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -fno-builtin -MMD compiler.c.elf.cmd=arm-none-eabi-g++ # -u _printf_float compiler.c.elf.flags=-Wl,--gc-sections --specs=nano.specs compiler.S.flags=-c -g -assembler-with-cpp compiler.cpp.cmd=arm-none-eabi-g++ -compiler.cpp.flags=-c -g -Os -w -ffunction-sections -fdata-sections -fno-rtti -fno-exceptions -fno-builtin -MMD +compiler.cpp.flags=-c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-rtti -fno-exceptions -fno-builtin -MMD compiler.ar.cmd=arm-none-eabi-ar compiler.ar.flags=rcs compiler.objcopy.cmd=arm-none-eabi-objcopy @@ -42,10 +43,10 @@ recipe.c.o.pattern="{compiler.path}{compiler.c.cmd}" {compiler.c.flags} -mcpu={b recipe.cpp.o.pattern="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} -mcpu={build.mcu} -DF_CPU={build.f_cpu} -D{software}={runtime.ide.version} {build.extra_flags} {includes} {build.variant_system_include} "{source_file}" -o "{object_file}" ## Create archives -recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} "{build.path}/{archive_file}" "{object_file}" +recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} "{archive_file_path}" "{object_file}" ## Combine gc-sections, archives, and objects -recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} -mcpu={build.mcu} {build.extra_flags} "-T{build.variant.path}/{build.ldscript}" "-Wl,-Map,{build.path}/{build.project_name}.map" -Wl,--cref -o "{build.path}/{build.project_name}.elf" "-L{build.path}" -Wl,--warn-common -Wl,--warn-section-align -Wl,--start-group "{build.path}/syscalls.c.o" {object_files} "{build.variant.path}/{build.variant_system_lib}" "{build.variant.path}/libRFduino.a" "{build.variant.path}/libRFduinoBLE.a" "{build.variant.path}/libRFduinoGZLL.a" "{build.path}/{archive_file}" -Wl,--end-group +recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} -mcpu={build.mcu} {build.extra_flags} "-T{build.variant.path}/{build.ldscript}" "-Wl,-Map,{build.path}/{build.project_name}.map" -Wl,--cref -o "{build.path}/{build.project_name}.elf" "-L{build.path}" -Wl,--warn-common -Wl,--warn-section-align -Wl,--start-group "{build.path}/core/syscalls.c.o" {object_files} "{build.variant.path}/{build.variant_system_lib}" "{build.variant.path}/libRFduino.a" "{build.variant.path}/libRFduinoBLE.a" "{build.variant.path}/libRFduinoGZLL.a" "{build.path}/{archive_file}" -Wl,--end-group ## Create eeprom recipe.objcopy.eep.pattern= @@ -67,6 +68,8 @@ recipe.hooks.postbuild.0.pattern= # RFduino Uploader tools # ---------------------- +tools.RFDLoader.path={runtime.platform.path}/ + tools.RFDLoader.cmd.windows=RFDLoader.exe tools.RFDLoader.cmd.macosx=RFDLoader_osx #tools.RFDLoader.cmd.macosx=RFDLoader32_osx diff --git a/preferences.png b/preferences.png index c2162b0..f73ed00 100644 Binary files a/preferences.png and b/preferences.png differ diff --git a/programmers.txt b/programmers.txt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/CMSIS END USER LICENCE AGREEMENT.pdf b/system/CMSIS/CMSIS/CMSIS END USER LICENCE AGREEMENT.pdf old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/ARM/startup_ARMCM0.s b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/ARM/startup_ARMCM0.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/ARM/startup_ARMCM3.s b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/ARM/startup_ARMCM3.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/ARM/startup_ARMCM4.s b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/ARM/startup_ARMCM4.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/G++/ARMCMx.ld b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/G++/ARMCMx.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/G++/startup_ARMCM0.s b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/G++/startup_ARMCM0.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/G++/startup_ARMCM3.s b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/G++/startup_ARMCM3.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/G++/startup_ARMCM4.s b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/G++/startup_ARMCM4.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/GCC/ARMCMx.ld b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/GCC/ARMCMx.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/GCC/startup_ARMCM0.S b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/GCC/startup_ARMCM0.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/GCC/startup_ARMCM3.S b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/GCC/startup_ARMCM3.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/GCC/startup_ARMCM4.S b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/GCC/startup_ARMCM4.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/Include/math_helper.h b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/Include/math_helper.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/Source/math_helper.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/Source/math_helper.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/system_ARMCM0.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/system_ARMCM0.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/system_ARMCM3.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/system_ARMCM3.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/system_ARMCM4.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/Common/system_ARMCM4.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_class_marks_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_class_marks_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM0l_class_marks_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM0l_class_marks_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM0l_class_marks_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM0l_class_marks_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM3l_class_marks_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM3l_class_marks_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM3l_class_marks_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM3l_class_marks_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM4lf_class_marks_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM4lf_class_marks_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM4lf_class_marks_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/ARM/arm_cortexM4lf_class_marks_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_class_marks_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_class_marks_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM0l_class_marks_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM0l_class_marks_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM0l_class_marks_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM0l_class_marks_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM3l_class_marks_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM3l_class_marks_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM3l_class_marks_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM3l_class_marks_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM4lf_class_marks_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM4lf_class_marks_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM4lf_class_marks_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/G++/arm_cortexM4lf_class_marks_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_class_marks_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_class_marks_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM0l_class_marks_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM0l_class_marks_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM0l_class_marks_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM0l_class_marks_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM3l_class_marks_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM3l_class_marks_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM3l_class_marks_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM3l_class_marks_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM4lf_class_marks_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM4lf_class_marks_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM4lf_class_marks_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/GCC/arm_cortexM4lf_class_marks_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/arm_class_marks_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_class_marks_example/arm_class_marks_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_convolution_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_convolution_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM0l_convolution_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM0l_convolution_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM0l_convolution_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM0l_convolution_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM3l_convolution_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM3l_convolution_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM3l_convolution_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM3l_convolution_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM4lf_convolution_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM4lf_convolution_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM4lf_convolution_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/ARM/arm_cortexM4lf_convolution_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_convolution_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_convolution_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM0l_convolution_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM0l_convolution_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM0l_convolution_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM0l_convolution_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM3l_convolution_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM3l_convolution_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM3l_convolution_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM3l_convolution_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM4lf_convolution_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM4lf_convolution_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM4lf_convolution_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/G++/arm_cortexM4lf_convolution_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_convolution_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_convolution_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM0l_convolution_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM0l_convolution_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM0l_convolution_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM0l_convolution_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM3l_convolution_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM3l_convolution_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM3l_convolution_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM3l_convolution_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM4lf_convolution_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM4lf_convolution_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM4lf_convolution_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/GCC/arm_cortexM4lf_convolution_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/arm_convolution_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_convolution_example/arm_convolution_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM0l_dotproduct_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM0l_dotproduct_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM0l_dotproduct_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM0l_dotproduct_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM3l_dotproduct_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM3l_dotproduct_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM3l_dotproduct_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM3l_dotproduct_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM4lf_dotproduct_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM4lf_dotproduct_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM4lf_dotproduct_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_cortexM4lf_dotproduct_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_dotproduct_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/ARM/arm_dotproduct_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM0l_dotproduct_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM0l_dotproduct_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM0l_dotproduct_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM0l_dotproduct_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM3l_dotproduct_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM3l_dotproduct_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM3l_dotproduct_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM3l_dotproduct_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM4lf_dotproduct_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM4lf_dotproduct_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM4lf_dotproduct_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_cortexM4lf_dotproduct_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_dotproduct_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/G++/arm_dotproduct_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM0l_dotproduct_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM0l_dotproduct_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM0l_dotproduct_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM0l_dotproduct_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM3l_dotproduct_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM3l_dotproduct_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM3l_dotproduct_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM3l_dotproduct_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM4lf_dotproduct_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM4lf_dotproduct_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM4lf_dotproduct_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_cortexM4lf_dotproduct_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_dotproduct_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/GCC/arm_dotproduct_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/arm_dotproduct_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_dotproduct_example/arm_dotproduct_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM0l_fft_bin_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM0l_fft_bin_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM0l_fft_bin_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM0l_fft_bin_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM3l_fft_bin_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM3l_fft_bin_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM3l_fft_bin_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM3l_fft_bin_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM4lf_fft_bin_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM4lf_fft_bin_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM4lf_fft_bin_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_cortexM4lf_fft_bin_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_fft_bin_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/ARM/arm_fft_bin_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/arm_fft_bin_data.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/arm_fft_bin_data.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/arm_fft_bin_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fft_bin_example/arm_fft_bin_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM0l_fir_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM0l_fir_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM0l_fir_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM0l_fir_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM3l_fir_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM3l_fir_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM3l_fir_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM3l_fir_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM4lf_fir_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM4lf_fir_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM4lf_fir_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_cortexM4lf_fir_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_fir_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/ARM/arm_fir_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/arm_fir_data.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/arm_fir_data.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/arm_fir_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_fir_example/arm_fir_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM0l_graphic_equalizer_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM0l_graphic_equalizer_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM0l_graphic_equalizer_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM0l_graphic_equalizer_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM3l_graphic_equalizer_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM3l_graphic_equalizer_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM3l_graphic_equalizer_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM3l_graphic_equalizer_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM4lf_graphic_equalizer_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM4lf_graphic_equalizer_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM4lf_graphic_equalizer_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_cortexM4lf_graphic_equalizer_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_graphic_equalizer_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/ARM/arm_graphic_equalizer_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM0l_linear_interp_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM0l_linear_interp_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM0l_linear_interp_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM0l_linear_interp_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM3l_linear_interp_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM3l_linear_interp_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM3l_linear_interp_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM3l_linear_interp_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM4lf_linear_interp_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM4lf_linear_interp_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM4lf_linear_interp_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_cortexM4lf_linear_interp_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_linear_interp_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/ARM/arm_linear_interp_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/arm_linear_interp_data.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/arm_linear_interp_data.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/arm_linear_interp_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_linear_interp_example/arm_linear_interp_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM0l_matrix_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM0l_matrix_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM0l_matrix_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM0l_matrix_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM3l_matrix_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM3l_matrix_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM3l_matrix_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM3l_matrix_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM4lf_matrix_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM4lf_matrix_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM4lf_matrix_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_cortexM4lf_matrix_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_matrix_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/ARM/arm_matrix_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/arm_matrix_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_matrix_example/arm_matrix_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM0l_signal_converge_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM0l_signal_converge_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM0l_signal_converge_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM0l_signal_converge_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM3l_signal_converge_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM3l_signal_converge_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM3l_signal_converge_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM3l_signal_converge_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM4lf_signal_converge_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM4lf_signal_converge_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM4lf_signal_converge_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_cortexM4lf_signal_converge_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_signal_converge_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/ARM/arm_signal_converge_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/arm_signal_converge_data.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/arm_signal_converge_data.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/arm_signal_converge_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_signal_converge_example/arm_signal_converge_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM0l_sin_cos_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM0l_sin_cos_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM0l_sin_cos_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM0l_sin_cos_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM3l_sin_cos_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM3l_sin_cos_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM3l_sin_cos_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM3l_sin_cos_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM4lf_sin_cos_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM4lf_sin_cos_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM4lf_sin_cos_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_cortexM4lf_sin_cos_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_sin_cos_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/ARM/arm_sin_cos_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/arm_sin_cos_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_sin_cos_example/arm_sin_cos_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM0l_variance_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM0l_variance_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM0l_variance_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM0l_variance_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM3l_variance_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM3l_variance_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM3l_variance_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM3l_variance_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM4lf_variance_example.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM4lf_variance_example.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM4lf_variance_example.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_cortexM4lf_variance_example.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_variance_example.ini b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/ARM/arm_variance_example.ini old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/arm_variance_example_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Examples/arm_variance_example/arm_variance_example_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM0x_math.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM0x_math.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM0x_math.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM0x_math.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM3x_math.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM3x_math.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM3x_math.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM3x_math.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM4x_math.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM4x_math.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM4x_math.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexM4x_math.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexMx_math_Build.bat b/system/CMSIS/CMSIS/DSP_Lib/Source/ARM/arm_cortexMx_math_Build.bat old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/CommonTables/arm_common_tables.c b/system/CMSIS/CMSIS/DSP_Lib/Source/CommonTables/arm_common_tables.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_conj_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_conj_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_conj_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_conj_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_conj_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_conj_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_dot_prod_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_dot_prod_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_squared_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_squared_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_real_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_real_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_real_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_real_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_real_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ComplexMathFunctions/arm_cmplx_mult_real_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_pid_reset_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_sin_cos_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_sin_cos_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_sin_cos_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/ControllerFunctions/arm_sin_cos_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_cos_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_cos_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_cos_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_cos_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_cos_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_cos_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sin_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sin_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sin_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sin_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sin_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sin_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sqrt_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sqrt_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sqrt_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FastMathFunctions/arm_sqrt_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df2T_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df2T_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df2T_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df2T_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_fast_opt_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_fast_opt_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_fast_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_fast_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_fast_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_fast_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_opt_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_opt_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_opt_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_opt_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_fast_opt_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_fast_opt_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_fast_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_fast_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_fast_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_fast_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_opt_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_opt_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_opt_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_opt_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_fast_opt_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_fast_opt_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_fast_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_fast_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_fast_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_fast_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_opt_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_opt_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_opt_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_opt_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_fast_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_fast_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_fast_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_fast_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_fast_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_fast_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_fast_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_fast_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM0x_math.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM0x_math.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM0x_math.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM0x_math.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM3x_math.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM3x_math.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM3x_math.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM3x_math.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM4x_math.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM4x_math.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM4x_math.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexM4x_math.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexMx_math_Build.bat b/system/CMSIS/CMSIS/DSP_Lib/Source/G++/arm_cortexMx_math_Build.bat old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM0x_math.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM0x_math.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM0x_math.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM0x_math.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM3x_math.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM3x_math.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM3x_math.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM3x_math.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM4x_math.uvopt b/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM4x_math.uvopt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM4x_math.uvproj b/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexM4x_math.uvproj old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexMx_math_Build.bat b/system/CMSIS/CMSIS/DSP_Lib/Source/GCC/arm_cortexMx_math_Build.bat old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_add_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_add_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_add_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_add_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_add_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_add_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_inverse_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_inverse_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_fast_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_fast_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_fast_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_fast_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_mult_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_scale_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_scale_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_scale_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_scale_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_scale_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_scale_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_sub_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_sub_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_sub_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_sub_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_sub_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_sub_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_trans_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_trans_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_trans_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_trans_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_trans_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/MatrixFunctions/arm_mat_trans_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_max_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_max_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_max_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_max_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_max_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_max_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_max_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_max_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_mean_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_mean_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_mean_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_mean_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_mean_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_mean_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_mean_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_mean_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_min_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_min_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_min_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_min_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_min_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_min_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_min_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_min_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_power_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_power_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_power_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_power_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_power_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_power_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_power_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_power_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_rms_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_rms_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_rms_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_rms_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_rms_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_rms_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_std_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_std_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_std_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_std_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_std_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_std_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_var_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_var_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_var_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_var_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_var_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/StatisticsFunctions/arm_var_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_float_to_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_float_to_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_float_to_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_float_to_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_float_to_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_float_to_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q15_to_float.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q15_to_float.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q15_to_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q15_to_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q15_to_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q15_to_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q31_to_float.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q31_to_float.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q31_to_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q31_to_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q31_to_q7.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q31_to_q7.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q7_to_float.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q7_to_float.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q7_to_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q7_to_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q7_to_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q7_to_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_bitreversal.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_bitreversal.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix2_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_cfft_radix4_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_dct4_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_f32.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_f32.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_init_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_q15.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_q15.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_q31.c b/system/CMSIS/CMSIS/DSP_Lib/Source/TransformFunctions/arm_rfft_q31.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/CMSIS_CORE_Files.png b/system/CMSIS/CMSIS/Documentation/Core/html/CMSIS_CORE_Files.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/CMSIS_CORE_Files_user.png b/system/CMSIS/CMSIS/Documentation/Core/html/CMSIS_CORE_Files_user.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/CMSIS_Logo_Final.png b/system/CMSIS/CMSIS/Documentation/Core/html/CMSIS_Logo_Final.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/_c_o_r_e__m_i_s_r_a__exceptions_pg.html b/system/CMSIS/CMSIS/Documentation/Core/html/_c_o_r_e__m_i_s_r_a__exceptions_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/_reg_map_pg.html b/system/CMSIS/CMSIS/Documentation/Core/html/_reg_map_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/_templates_pg.html b/system/CMSIS/CMSIS/Documentation/Core/html/_templates_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/_using__a_r_m_pg.html b/system/CMSIS/CMSIS/Documentation/Core/html/_using__a_r_m_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/_using_pg.html b/system/CMSIS/CMSIS/Documentation/Core/html/_using_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/annotated.html b/system/CMSIS/CMSIS/Documentation/Core/html/annotated.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/bc_s.png b/system/CMSIS/CMSIS/Documentation/Core/html/bc_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/check.png b/system/CMSIS/CMSIS/Documentation/Core/html/check.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/classes.html b/system/CMSIS/CMSIS/Documentation/Core/html/classes.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/closed.png b/system/CMSIS/CMSIS/Documentation/Core/html/closed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/cmsis.css b/system/CMSIS/CMSIS/Documentation/Core/html/cmsis.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/device_h_pg.html b/system/CMSIS/CMSIS/Documentation/Core/html/device_h_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/doxygen.png b/system/CMSIS/CMSIS/Documentation/Core/html/doxygen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2blank.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2blank.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2doc.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2doc.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2folderclosed.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2folderclosed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2folderopen.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2folderopen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2lastnode.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2lastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2link.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2link.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2mlastnode.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2mlastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2mnode.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2mnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2node.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2node.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2plastnode.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2plastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2pnode.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2pnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2splitbar.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2splitbar.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/ftv2vertline.png b/system/CMSIS/CMSIS/Documentation/Core/html/ftv2vertline.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/functions.html b/system/CMSIS/CMSIS/Documentation/Core/html/functions.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/functions_vars.html b/system/CMSIS/CMSIS/Documentation/Core/html/functions_vars.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/globals.html b/system/CMSIS/CMSIS/Documentation/Core/html/globals.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/globals_enum.html b/system/CMSIS/CMSIS/Documentation/Core/html/globals_enum.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/globals_eval.html b/system/CMSIS/CMSIS/Documentation/Core/html/globals_eval.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/globals_func.html b/system/CMSIS/CMSIS/Documentation/Core/html/globals_func.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/globals_vars.html b/system/CMSIS/CMSIS/Documentation/Core/html/globals_vars.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/group___core___register__gr.html b/system/CMSIS/CMSIS/Documentation/Core/html/group___core___register__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/group___i_t_m___debug__gr.html b/system/CMSIS/CMSIS/Documentation/Core/html/group___i_t_m___debug__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/group___n_v_i_c__gr.html b/system/CMSIS/CMSIS/Documentation/Core/html/group___n_v_i_c__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/group___sys_tick__gr.html b/system/CMSIS/CMSIS/Documentation/Core/html/group___sys_tick__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/group__intrinsic___c_p_u__gr.html b/system/CMSIS/CMSIS/Documentation/Core/html/group__intrinsic___c_p_u__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/group__intrinsic___s_i_m_d__gr.html b/system/CMSIS/CMSIS/Documentation/Core/html/group__intrinsic___s_i_m_d__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/group__peripheral__gr.html b/system/CMSIS/CMSIS/Documentation/Core/html/group__peripheral__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/group__system__init__gr.html b/system/CMSIS/CMSIS/Documentation/Core/html/group__system__init__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/index.html b/system/CMSIS/CMSIS/Documentation/Core/html/index.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/installdox b/system/CMSIS/CMSIS/Documentation/Core/html/installdox old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/jquery.js b/system/CMSIS/CMSIS/Documentation/Core/html/jquery.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/modules.html b/system/CMSIS/CMSIS/Documentation/Core/html/modules.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/nav_f.png b/system/CMSIS/CMSIS/Documentation/Core/html/nav_f.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/nav_h.png b/system/CMSIS/CMSIS/Documentation/Core/html/nav_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/navtree.css b/system/CMSIS/CMSIS/Documentation/Core/html/navtree.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/navtree.js b/system/CMSIS/CMSIS/Documentation/Core/html/navtree.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/open.png b/system/CMSIS/CMSIS/Documentation/Core/html/open.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/pages.html b/system/CMSIS/CMSIS/Documentation/Core/html/pages.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/resize.js b/system/CMSIS/CMSIS/Documentation/Core/html/resize.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search.css b/system/CMSIS/CMSIS/Documentation/Core/html/search.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_5f.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_5f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_61.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_62.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_63.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_64.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_65.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_65.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_66.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_68.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_68.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_69.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_6c.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_6c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_6d.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_6e.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_6f.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_70.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_71.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_71.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_72.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_72.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_73.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_74.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_75.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_75.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_76.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_76.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_77.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_77.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_78.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_78.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/all_7a.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/all_7a.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_61.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_63.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_64.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_66.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_69.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_6d.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_6e.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_73.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_74.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_78.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/classes_78.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/close.png b/system/CMSIS/CMSIS/Documentation/Core/html/search/close.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enums_69.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enums_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_62.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_64.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_68.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_68.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_6d.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_6e.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_70.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_73.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_75.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_75.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_77.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/enumvalues_77.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/files_6d.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/files_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/files_6f.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/files_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/files_72.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/files_72.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/files_74.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/files_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/files_75.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/files_75.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/functions_5f.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/functions_5f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/functions_69.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/functions_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/functions_6e.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/functions_6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/functions_73.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/functions_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/mag_sel.png b/system/CMSIS/CMSIS/Documentation/Core/html/search/mag_sel.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/nomatches.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/nomatches.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/search.css b/system/CMSIS/CMSIS/Documentation/Core/html/search/search.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/search.js b/system/CMSIS/CMSIS/Documentation/Core/html/search/search.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/search_l.png b/system/CMSIS/CMSIS/Documentation/Core/html/search/search_l.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/search_m.png b/system/CMSIS/CMSIS/Documentation/Core/html/search/search_m.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/search_r.png b/system/CMSIS/CMSIS/Documentation/Core/html/search/search_r.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_5f.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_5f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_61.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_62.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_63.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_64.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_65.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_65.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_66.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_68.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_68.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_69.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_6c.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_6c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_6d.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_6e.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_70.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_71.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_71.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_72.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_72.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_73.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_74.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_75.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_75.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_76.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_76.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_77.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_77.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_7a.html b/system/CMSIS/CMSIS/Documentation/Core/html/search/variables_7a.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/startup_s_pg.html b/system/CMSIS/CMSIS/Documentation/Core/html/startup_s_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_core_debug___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_core_debug___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_d_w_t___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_d_w_t___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_f_p_u___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_f_p_u___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_i_t_m___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_i_t_m___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_m_p_u___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_m_p_u___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_n_v_i_c___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_n_v_i_c___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_s_c_b___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_s_c_b___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_s_cn_s_c_b___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_s_cn_s_c_b___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_sys_tick___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_sys_tick___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/struct_t_p_i___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/struct_t_p_i___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/system_c_pg.html b/system/CMSIS/CMSIS/Documentation/Core/html/system_c_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/tab_a.png b/system/CMSIS/CMSIS/Documentation/Core/html/tab_a.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/tab_b.png b/system/CMSIS/CMSIS/Documentation/Core/html/tab_b.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/tab_h.png b/system/CMSIS/CMSIS/Documentation/Core/html/tab_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/tab_s.png b/system/CMSIS/CMSIS/Documentation/Core/html/tab_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/tab_topnav.png b/system/CMSIS/CMSIS/Documentation/Core/html/tab_topnav.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/tabs.css b/system/CMSIS/CMSIS/Documentation/Core/html/tabs.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/union_a_p_s_r___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/union_a_p_s_r___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/union_c_o_n_t_r_o_l___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/union_c_o_n_t_r_o_l___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/union_i_p_s_r___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/union_i_p_s_r___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/Core/html/unionx_p_s_r___type.html b/system/CMSIS/CMSIS/Documentation/Core/html/unionx_p_s_r___type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/Biquad.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/Biquad.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/BiquadCascade.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/BiquadCascade.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/BiquadDF2Transposed.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/BiquadDF2Transposed.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/BiquadPostshift.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/BiquadPostshift.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/CFFT.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/CFFT.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/CFFTQ15.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/CFFTQ15.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/CFFTQ31.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/CFFTQ31.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/CFFT_Radix2.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/CFFT_Radix2.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/CIFFTQ15.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/CIFFTQ15.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/CIFFTQ31.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/CIFFTQ31.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/CMSIS_Logo_Final.png b/system/CMSIS/CMSIS/Documentation/DSP/html/CMSIS_Logo_Final.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/Convolution.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/Convolution.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ConvolutionEquation.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/ConvolutionEquation.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/CorrelateEquation.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/CorrelateEquation.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/DCT4.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/DCT4.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/DCT4Equation.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/DCT4Equation.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FFTBin.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FFTBin.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FFTBinInput.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FFTBinInput.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FFTBinOutput.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FFTBinOutput.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIR.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIR.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIRDecimator.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIRDecimator.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIRInterpolator.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIRInterpolator.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_coeffs.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_coeffs.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_input.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_input.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_output.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_output.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_response.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_response.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_signalflow.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLPF_signalflow.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLattice.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIRLattice.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/FIRSparse.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/FIRSparse.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_allbandresponse.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_allbandresponse.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_bandresponse.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_bandresponse.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_inputchirp.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_inputchirp.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_outputchirp.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_outputchirp.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_signalflow.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/GEQ_signalflow.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/IDCT4Equation.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/IDCT4Equation.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/IIRLattice.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/IIRLattice.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/LMS.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/LMS.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/LinearInterp.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/LinearInterp.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixAddition.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixAddition.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixInverse.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixInverse.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixMultiplication.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixMultiplication.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixScale.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixScale.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixSubtraction.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixSubtraction.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixTranspose.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/MatrixTranspose.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/PID.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/PID.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/RFFT.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/RFFT.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/RFFTQ15.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/RFFTQ15.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/RFFTQ31.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/RFFTQ31.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/RIFFT.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/RIFFT.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/RIFFTQ15.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/RIFFTQ15.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/RIFFTQ31.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/RIFFTQ31.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/SignalFlow.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/SignalFlow.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/Variance.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/Variance.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/_d_s_p___lib_01_c_m0_01_b_e_8txt.html b/system/CMSIS/CMSIS/Documentation/DSP/html/_d_s_p___lib_01_c_m0_01_b_e_8txt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/_d_s_p___lib_01_c_m0_01_l_e_8txt.html b/system/CMSIS/CMSIS/Documentation/DSP/html/_d_s_p___lib_01_c_m0_01_l_e_8txt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/_d_s_p___lib_01_c_m3_01_l_e_8txt.html b/system/CMSIS/CMSIS/Documentation/DSP/html/_d_s_p___lib_01_c_m3_01_l_e_8txt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/annotated.html b/system/CMSIS/CMSIS/Documentation/DSP/html/annotated.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__abs__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__add__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__32x64__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__32x64__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__32x64__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__32x64__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__32x64__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__32x64__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__32x64__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__32x64__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__fast__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__fast__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__fast__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__fast__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__fast__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__fast__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__fast__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__fast__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df1__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df2_t__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df2_t__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df2_t__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df2_t__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df2t__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df2t__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df2t__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__biquad__cascade__df2t__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__bitreversal_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__bitreversal_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__bitreversal_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__bitreversal_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix2__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cfft__radix4__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__class__marks__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__class__marks__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__conj__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__dot__prod__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mag__squared__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__cmplx__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cmplx__mult__real__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__common__tables_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__common__tables_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__common__tables_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__common__tables_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__common__tables_8h.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__common__tables_8h.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__opt__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__opt__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__opt__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__opt__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__fast__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__opt__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__opt__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__opt__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__opt__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__opt__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__opt__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__opt__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__opt__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__opt__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__opt__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__opt__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__opt__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__fast__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__opt__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__opt__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__opt__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__opt__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__opt__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__opt__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__opt__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__opt__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__partial__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__conv__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__convolution__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__convolution__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__copy__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__opt__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__opt__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__opt__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__opt__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__fast__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__opt__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__opt__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__opt__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__opt__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__opt__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__opt__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__opt__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__opt__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__correlate__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__cos__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dct4__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dot__prod__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dotproduct__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__dotproduct__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fft__bin__data_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fft__bin__data_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fft__bin__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fft__bin__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fill__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__data_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__data_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__fast__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__fast__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__fast__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__fast__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__fast__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__fast__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__fast__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__fast__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__decimate__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__fast__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__fast__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__fast__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__fast__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__fast__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__fast__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__fast__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__fast__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__init__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__interpolate__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__lattice__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__init__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__fir__sparse__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__float__to__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__graphic__equalizer__data_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__graphic__equalizer__data_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__graphic__equalizer__example__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__graphic__equalizer__example__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__iir__lattice__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__linear__interp__data_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__linear__interp__data_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__linear__interp__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__linear__interp__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__norm__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__lms__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__add__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__inverse__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__inverse__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__inverse__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__inverse__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__fast__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__fast__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__fast__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__fast__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__fast__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__fast__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__fast__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__fast__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__mult__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__scale__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__sub__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mat__trans__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__math_8h.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__math_8h.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__matrix__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__matrix__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__max__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mean__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__min__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__mult__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__negate__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__offset__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__pid__reset__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__power__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__float_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__float_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__float_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__float_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q15__to__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__float_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__float_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__float_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__float_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q31__to__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__float_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__float_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__float_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__float_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__q7__to__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__init__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rfft__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__rms__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__scale__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__shift__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__signal__converge__data_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__signal__converge__data_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__signal__converge__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__signal__converge__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__cos__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sin__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sqrt__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sqrt__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sqrt__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sqrt__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sqrt__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sqrt__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sqrt__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sqrt__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__std__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q7_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q7_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q7_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__sub__q7_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__f32_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__f32_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__q15_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__q15_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__q15_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__q15_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__q31_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__q31_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__q31_8d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__var__q31_8d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm__variance__example__f32_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm__variance__example__f32_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_class_marks_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_class_marks_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_convolution_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_convolution_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_dotproduct_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_dotproduct_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_fft_bin_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_fft_bin_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_fir_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_fir_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_graphic_equalizer_example_q31_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_graphic_equalizer_example_q31_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_linear_interp_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_linear_interp_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_matrix_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_matrix_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_signal_converge_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_signal_converge_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_sin_cos_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_sin_cos_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/arm_variance_example_f32_8c-example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/arm_variance_example_f32_8c-example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/bc_s.png b/system/CMSIS/CMSIS/Documentation/DSP/html/bc_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/clarke.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/clarke.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/clarkeFormula.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/clarkeFormula.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/clarkeInvFormula.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/clarkeInvFormula.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/classes.html b/system/CMSIS/CMSIS/Documentation/DSP/html/classes.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/closed.png b/system/CMSIS/CMSIS/Documentation/DSP/html/closed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/cmsis.css b/system/CMSIS/CMSIS/Documentation/DSP/html/cmsis.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/dct4FormatsQ15Table.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/dct4FormatsQ15Table.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/dct4FormatsQ31Table.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/dct4FormatsQ31Table.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/dct4NormalizingF32Table.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/dct4NormalizingF32Table.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/dct4NormalizingQ15Table.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/dct4NormalizingQ15Table.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/dct4NormalizingQ31Table.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/dct4NormalizingQ31Table.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/dotProduct.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/dotProduct.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/doxygen.png b/system/CMSIS/CMSIS/Documentation/DSP/html/doxygen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/examples.html b/system/CMSIS/CMSIS/Documentation/DSP/html/examples.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/files.html b/system/CMSIS/CMSIS/Documentation/DSP/html/files.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2blank.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2blank.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2doc.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2doc.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2folderclosed.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2folderclosed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2folderopen.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2folderopen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2lastnode.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2lastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2link.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2link.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2mlastnode.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2mlastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2mnode.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2mnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2node.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2node.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2plastnode.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2plastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2pnode.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2pnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2splitbar.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2splitbar.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2vertline.png b/system/CMSIS/CMSIS/Documentation/DSP/html/ftv2vertline.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x62.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x65.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x65.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x66.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x69.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6b.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6b.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6e.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6f.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x70.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x72.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x72.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x73.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x74.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x78.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_0x78.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x62.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x65.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x65.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x66.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x69.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6b.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6b.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6e.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6f.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x70.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x72.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x72.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x73.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x74.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x78.html b/system/CMSIS/CMSIS/Documentation/DSP/html/functions_vars_0x78.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x61.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x62.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x63.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x64.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x65.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x65.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x66.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x67.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x67.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x69.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x6c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x6c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x6d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x6e.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x6f.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x70.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x71.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x71.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x72.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x72.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x73.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x74.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x75.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x75.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x76.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x76.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x77.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x77.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x78.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_0x78.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_defs.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_defs.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_enum.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_enum.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_eval.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_eval.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x62.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x63.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x64.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x66.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x67.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x67.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x69.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x6c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x6c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x6d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x6e.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x6f.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x70.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x71.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x71.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x72.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x72.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x73.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x74.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x76.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_func_0x76.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_type.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/globals_vars.html b/system/CMSIS/CMSIS/Documentation/DSP/html/globals_vars.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___basic_abs.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___basic_abs.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___basic_add.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___basic_add.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___basic_mult.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___basic_mult.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___basic_sub.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___basic_sub.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___bilinear_interpolate.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___bilinear_interpolate.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___biquad_cascade_d_f1.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___biquad_cascade_d_f1.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___biquad_cascade_d_f1__32x64.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___biquad_cascade_d_f1__32x64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___biquad_cascade_d_f2_t.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___biquad_cascade_d_f2_t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___c_f_f_t___c_i_f_f_t.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___c_f_f_t___c_i_f_f_t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___class_marks.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___class_marks.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___cmplx_by_cmplx_mult.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___cmplx_by_cmplx_mult.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___cmplx_by_real_mult.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___cmplx_by_real_mult.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___conv.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___conv.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___convolution_example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___convolution_example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___corr.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___corr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___d_c_t4___i_d_c_t4.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___d_c_t4___i_d_c_t4.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___dotproduct_example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___dotproduct_example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r___interpolate.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r___interpolate.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r___lattice.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r___lattice.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r___sparse.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r___sparse.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r__decimate.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r__decimate.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r_l_p_f.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___f_i_r_l_p_f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___fill.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___fill.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___frequency_bin.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___frequency_bin.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___g_e_q5_band.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___g_e_q5_band.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___i_i_r___lattice.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___i_i_r___lattice.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___l_m_s.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___l_m_s.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___l_m_s___n_o_r_m.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___l_m_s___n_o_r_m.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___linear_interp_example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___linear_interp_example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___linear_interpolate.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___linear_interpolate.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_add.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_add.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_init.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_init.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_inv.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_inv.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_mult.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_mult.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_scale.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_scale.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_sub.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_sub.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_trans.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___matrix_trans.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___max.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___max.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___min.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___min.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___p_i_d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___p_i_d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___partial_conv.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___partial_conv.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___r_f_f_t___r_i_f_f_t.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___r_f_f_t___r_i_f_f_t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___r_m_s.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___r_m_s.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___radix2___c_f_f_t___c_i_f_f_t.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___radix2___c_f_f_t___c_i_f_f_t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___radix4___c_f_f_t___c_i_f_f_t.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___radix4___c_f_f_t___c_i_f_f_t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___s_q_r_t.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___s_q_r_t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___s_t_d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___s_t_d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___signal_convergence.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___signal_convergence.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___sin_cos.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___sin_cos.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___sin_cos_example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___sin_cos_example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group___variance_example.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group___variance_example.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__clarke.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__clarke.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__cmplx__conj.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__cmplx__conj.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__cmplx__dot__prod.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__cmplx__dot__prod.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__cmplx__mag.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__cmplx__mag.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__cmplx__mag__squared.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__cmplx__mag__squared.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__copy.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__copy.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__cos.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__cos.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__dot__prod.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__dot__prod.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__float__to__x.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__float__to__x.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_cmplx_math.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_cmplx_math.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_controller.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_controller.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_examples.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_examples.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_fast_math.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_fast_math.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_filters.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_filters.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_interpolation.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_interpolation.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_math.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_math.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_matrix.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_matrix.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_stats.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_stats.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_support.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_support.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_transforms.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__group_transforms.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__inv__clarke.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__inv__clarke.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__inv__park.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__inv__park.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__mean.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__mean.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__negate.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__negate.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__offset.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__offset.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__park.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__park.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__power.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__power.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__q15__to__x.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__q15__to__x.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__q31__to__x.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__q31__to__x.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__q7__to__x.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__q7__to__x.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__scale.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__scale.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__shift.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__shift.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__sin.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__sin.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/group__variance.html b/system/CMSIS/CMSIS/Documentation/DSP/html/group__variance.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/index.html b/system/CMSIS/CMSIS/Documentation/DSP/html/index.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/installdox b/system/CMSIS/CMSIS/Documentation/DSP/html/installdox old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/jquery.js b/system/CMSIS/CMSIS/Documentation/DSP/html/jquery.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/linearInterpExampleMethod1.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/linearInterpExampleMethod1.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/linearInterpExampleMethod2.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/linearInterpExampleMethod2.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/math__helper_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/math__helper_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/math__helper_8h.html b/system/CMSIS/CMSIS/Documentation/DSP/html/math__helper_8h.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/matrixExample.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/matrixExample.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/modules.html b/system/CMSIS/CMSIS/Documentation/DSP/html/modules.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/nav_f.png b/system/CMSIS/CMSIS/Documentation/DSP/html/nav_f.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/nav_h.png b/system/CMSIS/CMSIS/Documentation/DSP/html/nav_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/navtree.css b/system/CMSIS/CMSIS/Documentation/DSP/html/navtree.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/navtree.js b/system/CMSIS/CMSIS/Documentation/DSP/html/navtree.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/open.png b/system/CMSIS/CMSIS/Documentation/DSP/html/open.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/park.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/park.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/parkFormula.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/parkFormula.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/parkInvFormula.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/parkInvFormula.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/resize.js b/system/CMSIS/CMSIS/Documentation/DSP/html/resize.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_5f.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_5f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_61.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_62.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_63.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_64.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_65.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_65.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_66.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_67.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_67.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_69.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6b.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6b.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6e.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6f.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_70.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_71.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_71.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_72.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_72.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_73.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_74.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_75.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_75.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_76.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_76.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_77.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_77.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_78.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/all_78.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/classes_61.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/classes_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/close.png b/system/CMSIS/CMSIS/Documentation/DSP/html/search/close.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_5f.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_5f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_61.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_62.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_64.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_69.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_6d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_6e.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_70.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_73.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_74.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_75.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_75.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_78.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/defines_78.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/enums_61.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/enums_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/enumvalues_61.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/enumvalues_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/files_61.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/files_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/files_64.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/files_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/files_6d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/files_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/files_73.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/files_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_61.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_63.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_66.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_67.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_67.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_6d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_73.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_74.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/functions_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/mag_sel.png b/system/CMSIS/CMSIS/Documentation/DSP/html/search/mag_sel.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/nomatches.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/nomatches.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/search.css b/system/CMSIS/CMSIS/Documentation/DSP/html/search/search.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/search.js b/system/CMSIS/CMSIS/Documentation/DSP/html/search/search.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/search_l.png b/system/CMSIS/CMSIS/Documentation/DSP/html/search/search_l.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/search_m.png b/system/CMSIS/CMSIS/Documentation/DSP/html/search/search_m.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/search_r.png b/system/CMSIS/CMSIS/Documentation/DSP/html/search/search_r.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/typedefs_66.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/typedefs_66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/typedefs_71.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/typedefs_71.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_61.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_61.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_62.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_62.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_63.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_64.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_65.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_65.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_66.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_66.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_67.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_67.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_69.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6b.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6b.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6d.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6e.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6e.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6f.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_70.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_72.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_72.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_73.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_74.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_76.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_76.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_77.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_77.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_78.html b/system/CMSIS/CMSIS/Documentation/DSP/html/search/variables_78.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/sinCos.gif b/system/CMSIS/CMSIS/Documentation/DSP/html/sinCos.gif old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__q7.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__bilinear__interp__instance__q7.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__cas__df1__32x64__ins__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__cas__df1__32x64__ins__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__cascade__df2_t__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__cascade__df2_t__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__casd__df1__inst__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__casd__df1__inst__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__casd__df1__inst__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__casd__df1__inst__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__casd__df1__inst__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__biquad__casd__df1__inst__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix2__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix2__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix2__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix2__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix2__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix2__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix4__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix4__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix4__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix4__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix4__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__cfft__radix4__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__dct4__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__dct4__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__dct4__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__dct4__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__dct4__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__dct4__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__decimate__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__decimate__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__decimate__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__decimate__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__decimate__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__decimate__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__instance__q7.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__instance__q7.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__interpolate__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__interpolate__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__interpolate__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__interpolate__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__interpolate__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__interpolate__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__lattice__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__lattice__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__lattice__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__lattice__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__lattice__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__lattice__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__q7.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__fir__sparse__instance__q7.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__iir__lattice__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__iir__lattice__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__iir__lattice__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__iir__lattice__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__iir__lattice__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__iir__lattice__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__linear__interp__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__linear__interp__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__norm__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__norm__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__norm__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__norm__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__norm__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__lms__norm__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__matrix__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__matrix__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__matrix__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__matrix__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__matrix__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__matrix__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__pid__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__pid__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__pid__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__pid__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__pid__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__pid__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__rfft__instance__f32.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__rfft__instance__f32.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__rfft__instance__q15.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__rfft__instance__q15.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__rfft__instance__q31.html b/system/CMSIS/CMSIS/Documentation/DSP/html/structarm__rfft__instance__q31.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/system___a_r_m_c_m0_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/system___a_r_m_c_m0_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/system___a_r_m_c_m3_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/system___a_r_m_c_m3_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/system___a_r_m_c_m4_8c.html b/system/CMSIS/CMSIS/Documentation/DSP/html/system___a_r_m_c_m4_8c.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/tab_a.png b/system/CMSIS/CMSIS/Documentation/DSP/html/tab_a.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/tab_b.png b/system/CMSIS/CMSIS/Documentation/DSP/html/tab_b.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/tab_h.png b/system/CMSIS/CMSIS/Documentation/DSP/html/tab_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/tab_s.png b/system/CMSIS/CMSIS/Documentation/DSP/html/tab_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/tab_topnav.png b/system/CMSIS/CMSIS/Documentation/DSP/html/tab_topnav.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/DSP/html/tabs.css b/system/CMSIS/CMSIS/Documentation/DSP/html/tabs.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/CMSIS_Logo_Final.png b/system/CMSIS/CMSIS/Documentation/General/html/CMSIS_Logo_Final.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/CMSIS_V3_small.png b/system/CMSIS/CMSIS/Documentation/General/html/CMSIS_V3_small.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/bc_s.png b/system/CMSIS/CMSIS/Documentation/General/html/bc_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/closed.png b/system/CMSIS/CMSIS/Documentation/General/html/closed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/cmsis.css b/system/CMSIS/CMSIS/Documentation/General/html/cmsis.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/doxygen.png b/system/CMSIS/CMSIS/Documentation/General/html/doxygen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2blank.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2blank.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2doc.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2doc.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2folderclosed.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2folderclosed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2folderopen.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2folderopen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2lastnode.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2lastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2link.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2link.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2mlastnode.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2mlastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2mnode.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2mnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2node.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2node.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2plastnode.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2plastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2pnode.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2pnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2splitbar.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2splitbar.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/ftv2vertline.png b/system/CMSIS/CMSIS/Documentation/General/html/ftv2vertline.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/index.html b/system/CMSIS/CMSIS/Documentation/General/html/index.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/jquery.js b/system/CMSIS/CMSIS/Documentation/General/html/jquery.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/nav_f.png b/system/CMSIS/CMSIS/Documentation/General/html/nav_f.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/nav_h.png b/system/CMSIS/CMSIS/Documentation/General/html/nav_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/navtree.css b/system/CMSIS/CMSIS/Documentation/General/html/navtree.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/navtree.js b/system/CMSIS/CMSIS/Documentation/General/html/navtree.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/open.png b/system/CMSIS/CMSIS/Documentation/General/html/open.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/resize.js b/system/CMSIS/CMSIS/Documentation/General/html/resize.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/tab_a.png b/system/CMSIS/CMSIS/Documentation/General/html/tab_a.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/tab_b.png b/system/CMSIS/CMSIS/Documentation/General/html/tab_b.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/tab_h.png b/system/CMSIS/CMSIS/Documentation/General/html/tab_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/tab_s.png b/system/CMSIS/CMSIS/Documentation/General/html/tab_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/tab_topnav.png b/system/CMSIS/CMSIS/Documentation/General/html/tab_topnav.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/General/html/tabs.css b/system/CMSIS/CMSIS/Documentation/General/html/tabs.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/API_Structure.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/API_Structure.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/CMSIS_Logo_Final.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/CMSIS_Logo_Final.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/CMSIS_RTOS_Files.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/CMSIS_RTOS_Files.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/MailQueue.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/MailQueue.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/MessageQueue.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/MessageQueue.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/Mutex.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/Mutex.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/Semaphore.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/Semaphore.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ThreadStatus.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ThreadStatus.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/Timer.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/Timer.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/_function_overview.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/_function_overview.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/_using_o_s.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/_using_o_s.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/annotated.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/annotated.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/bc_s.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/bc_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/classes.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/classes.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/closed.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/closed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/cmsis.css b/system/CMSIS/CMSIS/Documentation/RTOS/html/cmsis.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/cmsis__os_8h.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/cmsis__os_8h.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/cmsis__os_8txt.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/cmsis__os_8txt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/cmsis_os_h.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/cmsis_os_h.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/doxygen.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/doxygen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/files.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/files.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2blank.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2blank.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2doc.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2doc.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2folderclosed.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2folderclosed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2folderopen.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2folderopen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2lastnode.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2lastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2link.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2link.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2mlastnode.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2mlastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2mnode.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2mnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2node.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2node.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2plastnode.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2plastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2pnode.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2pnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2splitbar.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2splitbar.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2vertline.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/ftv2vertline.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/functions.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/functions.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/functions_vars.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/functions_vars.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/globals.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/globals.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_defs.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_defs.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_enum.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_enum.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_eval.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_eval.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_func.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_func.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_type.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/globals_type.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___definitions.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___definitions.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___mail.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___mail.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___message.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___message.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___pool_mgmt.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___pool_mgmt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___signal_mgmt.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___signal_mgmt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___status.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___status.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___thread_mgmt.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___thread_mgmt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___timer_mgmt.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___timer_mgmt.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___wait.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___wait.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/index.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/index.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/installdox b/system/CMSIS/CMSIS/Documentation/RTOS/html/installdox old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/jquery.js b/system/CMSIS/CMSIS/Documentation/RTOS/html/jquery.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/modules.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/modules.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/nav_f.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/nav_f.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/nav_h.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/nav_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/navtree.css b/system/CMSIS/CMSIS/Documentation/RTOS/html/navtree.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/navtree.js b/system/CMSIS/CMSIS/Documentation/RTOS/html/navtree.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/open.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/open.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/pages.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/pages.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/resize.js b/system/CMSIS/CMSIS/Documentation/RTOS/html/resize.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_63.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_64.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_69.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_6d.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_6f.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_70.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_71.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_71.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_73.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_74.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_76.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/all_76.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/classes_6f.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/classes_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/close.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/close.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/defines_6f.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/defines_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/enums_6f.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/enums_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/enumvalues_6f.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/enumvalues_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/files_63.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/files_63.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/functions_6f.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/functions_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/mag_sel.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/mag_sel.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/nomatches.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/nomatches.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search.css b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search.js b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search_l.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search_l.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search_m.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search_m.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search_r.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/search_r.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/typedefs_6f.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/typedefs_6f.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_64.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_64.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_69.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_69.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_6d.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_6d.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_70.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_70.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_71.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_71.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_73.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_73.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_74.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_74.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_76.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/search/variables_76.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_mail_q_def__t.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_mail_q_def__t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_message_q_def__t.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_message_q_def__t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_mutex_def__t.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_mutex_def__t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_pool_def__t.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_pool_def__t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_semaphore_def__t.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_semaphore_def__t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_thread_def__t.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_thread_def__t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_timer_def__t.html b/system/CMSIS/CMSIS/Documentation/RTOS/html/structos_timer_def__t.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_a.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_a.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_b.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_b.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_h.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_s.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_topnav.png b/system/CMSIS/CMSIS/Documentation/RTOS/html/tab_topnav.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/RTOS/html/tabs.css b/system/CMSIS/CMSIS/Documentation/RTOS/html/tabs.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/Access_SVD_DD_Manage.png b/system/CMSIS/CMSIS/Documentation/SVD/html/Access_SVD_DD_Manage.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/Access_SVD_Vendor.png b/system/CMSIS/CMSIS/Documentation/SVD/html/Access_SVD_Vendor.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS-SVD_Schema_1_0.xsd b/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS-SVD_Schema_1_0.xsd old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS_Logo_Final.png b/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS_Logo_Final.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS_SVD_Schema_Gen.png b/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS_SVD_Schema_Gen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS_SVD_Vendor_DD.png b/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS_SVD_Vendor_DD.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS_SVD_WEB_DATABASE.png b/system/CMSIS/CMSIS/Documentation/SVD/html/CMSIS_SVD_WEB_DATABASE.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/Manage_SVD_DD.png b/system/CMSIS/CMSIS/Documentation/SVD/html/Manage_SVD_DD.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/bc_s.png b/system/CMSIS/CMSIS/Documentation/SVD/html/bc_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/closed.png b/system/CMSIS/CMSIS/Documentation/SVD/html/closed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/cmsis.css b/system/CMSIS/CMSIS/Documentation/SVD/html/cmsis.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/doxygen.png b/system/CMSIS/CMSIS/Documentation/SVD/html/doxygen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/dynsections.js b/system/CMSIS/CMSIS/Documentation/SVD/html/dynsections.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2blank.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2blank.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2doc.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2doc.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2folderclosed.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2folderclosed.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2folderopen.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2folderopen.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2lastnode.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2lastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2link.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2link.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2mlastnode.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2mlastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2mnode.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2mnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2node.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2node.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2plastnode.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2plastnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2pnode.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2pnode.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2splitbar.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2splitbar.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2vertline.png b/system/CMSIS/CMSIS/Documentation/SVD/html/ftv2vertline.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__cluster_level__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__cluster_level__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__cpu_section__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__cpu_section__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__device_section_extensions__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__device_section_extensions__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__dim_element_group__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__dim_element_group__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__elem__type__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__elem__type__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__peripheral_section_extensions__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__peripheral_section_extensions__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__register_properties_group__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__register_properties_group__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__register_section_extensions__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__register_section_extensions__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__schema__1__1__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__schema__1__1__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__schema__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__schema__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd___format__1__1__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd___format__1__1__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd___format__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd___format__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__device__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__device__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__enum__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__enum__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__fields__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__fields__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__peripherals__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__peripherals__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__registers__gr.html b/system/CMSIS/CMSIS/Documentation/SVD/html/group__svd__xml__registers__gr.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/index.html b/system/CMSIS/CMSIS/Documentation/SVD/html/index.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/jquery.js b/system/CMSIS/CMSIS/Documentation/SVD/html/jquery.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/modules.html b/system/CMSIS/CMSIS/Documentation/SVD/html/modules.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/nav_f.png b/system/CMSIS/CMSIS/Documentation/SVD/html/nav_f.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/nav_h.png b/system/CMSIS/CMSIS/Documentation/SVD/html/nav_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/navtree.css b/system/CMSIS/CMSIS/Documentation/SVD/html/navtree.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/navtree.js b/system/CMSIS/CMSIS/Documentation/SVD/html/navtree.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/open.png b/system/CMSIS/CMSIS/Documentation/SVD/html/open.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/pages.html b/system/CMSIS/CMSIS/Documentation/SVD/html/pages.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/resize.js b/system/CMSIS/CMSIS/Documentation/SVD/html/resize.js old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/svd__example_pg.html b/system/CMSIS/CMSIS/Documentation/SVD/html/svd__example_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/svd__outline_pg.html b/system/CMSIS/CMSIS/Documentation/SVD/html/svd__outline_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/svd__usage_pg.html b/system/CMSIS/CMSIS/Documentation/SVD/html/svd__usage_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/svd_validate_file_pg.html b/system/CMSIS/CMSIS/Documentation/SVD/html/svd_validate_file_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/svd_web_pg.html b/system/CMSIS/CMSIS/Documentation/SVD/html/svd_web_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/svd_web_public_pg.html b/system/CMSIS/CMSIS/Documentation/SVD/html/svd_web_public_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/svd_web_restricted_pg.html b/system/CMSIS/CMSIS/Documentation/SVD/html/svd_web_restricted_pg.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/tab_a.png b/system/CMSIS/CMSIS/Documentation/SVD/html/tab_a.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/tab_b.png b/system/CMSIS/CMSIS/Documentation/SVD/html/tab_b.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/tab_h.png b/system/CMSIS/CMSIS/Documentation/SVD/html/tab_h.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/tab_s.png b/system/CMSIS/CMSIS/Documentation/SVD/html/tab_s.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/tab_topnav.png b/system/CMSIS/CMSIS/Documentation/SVD/html/tab_topnav.png old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Documentation/SVD/html/tabs.css b/system/CMSIS/CMSIS/Documentation/SVD/html/tabs.css old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/arm_common_tables.h b/system/CMSIS/CMSIS/Include/arm_common_tables.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/arm_math.h b/system/CMSIS/CMSIS/Include/arm_math.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/core_cm0.h b/system/CMSIS/CMSIS/Include/core_cm0.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/core_cm0plus.h b/system/CMSIS/CMSIS/Include/core_cm0plus.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/core_cm3.h b/system/CMSIS/CMSIS/Include/core_cm3.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/core_cm4.h b/system/CMSIS/CMSIS/Include/core_cm4.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/core_cm4_simd.h b/system/CMSIS/CMSIS/Include/core_cm4_simd.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/core_cmFunc.h b/system/CMSIS/CMSIS/Include/core_cmFunc.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/core_cmInstr.h b/system/CMSIS/CMSIS/Include/core_cmInstr.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/core_sc000.h b/system/CMSIS/CMSIS/Include/core_sc000.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Include/core_sc300.h b/system/CMSIS/CMSIS/Include/core_sc300.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM0b_math.lib b/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM0b_math.lib old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM0l_math.lib b/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM0l_math.lib old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM3b_math.lib b/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM3b_math.lib old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM3l_math.lib b/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM3l_math.lib old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM4b_math.lib b/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM4b_math.lib old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib b/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM4l_math.lib b/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM4l_math.lib old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib b/system/CMSIS/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/README.txt b/system/CMSIS/CMSIS/README.txt old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/RTOS/cmsis_os.h b/system/CMSIS/CMSIS/RTOS/cmsis_os.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/SVD/ARM_Sample.svd b/system/CMSIS/CMSIS/SVD/ARM_Sample.svd old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/SVD/ARM_Sample_1_1.svd b/system/CMSIS/CMSIS/SVD/ARM_Sample_1_1.svd old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/SVD/CMSIS-SVD_Schema_1_0.xsd b/system/CMSIS/CMSIS/SVD/CMSIS-SVD_Schema_1_0.xsd old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/SVD/CMSIS-SVD_Schema_1_1_draft.xsd b/system/CMSIS/CMSIS/SVD/CMSIS-SVD_Schema_1_1_draft.xsd old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/SVD/SVDConv.exe b/system/CMSIS/CMSIS/SVD/SVDConv.exe old mode 100755 new mode 100644 diff --git a/system/CMSIS/CMSIS/index.html b/system/CMSIS/CMSIS/index.html old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0/Include/ARMCM0.h b/system/CMSIS/Device/ARM/ARMCM0/Include/ARMCM0.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0/Include/system_ARMCM0.h b/system/CMSIS/Device/ARM/ARMCM0/Include/system_ARMCM0.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0/Source/ARM/startup_ARMCM0.s b/system/CMSIS/Device/ARM/ARMCM0/Source/ARM/startup_ARMCM0.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0/Source/G++/gcc_cs.ld b/system/CMSIS/Device/ARM/ARMCM0/Source/G++/gcc_cs.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0/Source/G++/startup_ARMCM0.s b/system/CMSIS/Device/ARM/ARMCM0/Source/G++/startup_ARMCM0.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0/Source/GCC/gcc_arm.ld b/system/CMSIS/Device/ARM/ARMCM0/Source/GCC/gcc_arm.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0/Source/GCC/startup_ARMCM0.S b/system/CMSIS/Device/ARM/ARMCM0/Source/GCC/startup_ARMCM0.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0/Source/IAR/startup_ARMCM0.s b/system/CMSIS/Device/ARM/ARMCM0/Source/IAR/startup_ARMCM0.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0/Source/system_ARMCM0.c b/system/CMSIS/Device/ARM/ARMCM0/Source/system_ARMCM0.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0plus/Include/ARMCM0plus.h b/system/CMSIS/Device/ARM/ARMCM0plus/Include/ARMCM0plus.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0plus/Include/system_ARMCM0plus.h b/system/CMSIS/Device/ARM/ARMCM0plus/Include/system_ARMCM0plus.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0plus/Source/ARM/startup_ARMCM0plus.s b/system/CMSIS/Device/ARM/ARMCM0plus/Source/ARM/startup_ARMCM0plus.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0plus/Source/G++/gcc_cs.ld b/system/CMSIS/Device/ARM/ARMCM0plus/Source/G++/gcc_cs.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0plus/Source/G++/startup_ARMCMplus.s b/system/CMSIS/Device/ARM/ARMCM0plus/Source/G++/startup_ARMCMplus.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld b/system/CMSIS/Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0plus/Source/GCC/startup_ARMCM0plus.S b/system/CMSIS/Device/ARM/ARMCM0plus/Source/GCC/startup_ARMCM0plus.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0plus/Source/IAR/startup_ARMCM0plus.s b/system/CMSIS/Device/ARM/ARMCM0plus/Source/IAR/startup_ARMCM0plus.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c b/system/CMSIS/Device/ARM/ARMCM0plus/Source/system_ARMCM0plus.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM3/Include/ARMCM3.h b/system/CMSIS/Device/ARM/ARMCM3/Include/ARMCM3.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM3/Include/system_ARMCM3.h b/system/CMSIS/Device/ARM/ARMCM3/Include/system_ARMCM3.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM3/Source/ARM/startup_ARMCM3.s b/system/CMSIS/Device/ARM/ARMCM3/Source/ARM/startup_ARMCM3.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM3/Source/G++/gcc_cs.ld b/system/CMSIS/Device/ARM/ARMCM3/Source/G++/gcc_cs.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM3/Source/G++/startup_ARMCM3.s b/system/CMSIS/Device/ARM/ARMCM3/Source/G++/startup_ARMCM3.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM3/Source/GCC/gcc_arm.ld b/system/CMSIS/Device/ARM/ARMCM3/Source/GCC/gcc_arm.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM3/Source/GCC/startup_ARMCM3.S b/system/CMSIS/Device/ARM/ARMCM3/Source/GCC/startup_ARMCM3.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM3/Source/IAR/startup_ARMCM3.s b/system/CMSIS/Device/ARM/ARMCM3/Source/IAR/startup_ARMCM3.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM3/Source/system_ARMCM3.c b/system/CMSIS/Device/ARM/ARMCM3/Source/system_ARMCM3.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM4/Include/ARMCM4.h b/system/CMSIS/Device/ARM/ARMCM4/Include/ARMCM4.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM4/Include/system_ARMCM4.h b/system/CMSIS/Device/ARM/ARMCM4/Include/system_ARMCM4.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM4/Source/ARM/startup_ARMCM4.s b/system/CMSIS/Device/ARM/ARMCM4/Source/ARM/startup_ARMCM4.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM4/Source/G++/gcc_cs.ld b/system/CMSIS/Device/ARM/ARMCM4/Source/G++/gcc_cs.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM4/Source/G++/startup_ARMCM4.s b/system/CMSIS/Device/ARM/ARMCM4/Source/G++/startup_ARMCM4.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM4/Source/GCC/gcc_arm.ld b/system/CMSIS/Device/ARM/ARMCM4/Source/GCC/gcc_arm.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM4/Source/GCC/startup_ARMCM4.S b/system/CMSIS/Device/ARM/ARMCM4/Source/GCC/startup_ARMCM4.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM4/Source/IAR/startup_ARMCM4.s b/system/CMSIS/Device/ARM/ARMCM4/Source/IAR/startup_ARMCM4.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMCM4/Source/system_ARMCM4.c b/system/CMSIS/Device/ARM/ARMCM4/Source/system_ARMCM4.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC000/Include/ARMSC000.h b/system/CMSIS/Device/ARM/ARMSC000/Include/ARMSC000.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC000/Include/system_ARMSC000.h b/system/CMSIS/Device/ARM/ARMSC000/Include/system_ARMSC000.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC000/Source/ARM/startup_ARMSC000.s b/system/CMSIS/Device/ARM/ARMSC000/Source/ARM/startup_ARMSC000.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC000/Source/G++/gcc_cs.ld b/system/CMSIS/Device/ARM/ARMSC000/Source/G++/gcc_cs.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC000/Source/G++/startup_ARMSC000.s b/system/CMSIS/Device/ARM/ARMSC000/Source/G++/startup_ARMSC000.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC000/Source/GCC/gcc_arm.ld b/system/CMSIS/Device/ARM/ARMSC000/Source/GCC/gcc_arm.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC000/Source/GCC/startup_ARMSC000.S b/system/CMSIS/Device/ARM/ARMSC000/Source/GCC/startup_ARMSC000.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC000/Source/IAR/startup_ARMSC000.s b/system/CMSIS/Device/ARM/ARMSC000/Source/IAR/startup_ARMSC000.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC000/Source/system_ARMSC000.c b/system/CMSIS/Device/ARM/ARMSC000/Source/system_ARMSC000.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC300/Include/ARMSC300.h b/system/CMSIS/Device/ARM/ARMSC300/Include/ARMSC300.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC300/Include/system_ARMSC300.h b/system/CMSIS/Device/ARM/ARMSC300/Include/system_ARMSC300.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC300/Source/ARM/startup_ARMSC300.s b/system/CMSIS/Device/ARM/ARMSC300/Source/ARM/startup_ARMSC300.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC300/Source/G++/gcc_cs.ld b/system/CMSIS/Device/ARM/ARMSC300/Source/G++/gcc_cs.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC300/Source/G++/startup_ARMSC300.s b/system/CMSIS/Device/ARM/ARMSC300/Source/G++/startup_ARMSC300.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC300/Source/GCC/gcc_arm.ld b/system/CMSIS/Device/ARM/ARMSC300/Source/GCC/gcc_arm.ld old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC300/Source/GCC/startup_ARMSC300.S b/system/CMSIS/Device/ARM/ARMSC300/Source/GCC/startup_ARMSC300.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC300/Source/IAR/startup_ARMSC300.s b/system/CMSIS/Device/ARM/ARMSC300/Source/IAR/startup_ARMSC300.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/ARM/ARMSC300/Source/system_ARMSC300.c b/system/CMSIS/Device/ARM/ARMSC300/Source/system_ARMSC300.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/_Template_Vendor/ReadMe.txt b/system/CMSIS/Device/_Template_Vendor/ReadMe.txt old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Include/Device.h b/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Include/Device.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Include/system_Device.h b/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Include/system_Device.h old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/ARM/startup_Device.s b/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/ARM/startup_Device.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/G++/startup_Device.s b/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/G++/startup_Device.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/GCC/startup_Device.S b/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/GCC/startup_Device.S old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/IAR/startup_Device.s b/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/IAR/startup_Device.s old mode 100755 new mode 100644 diff --git a/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/system_Device.c b/system/CMSIS/Device/_Template_Vendor/Vendor/Device/Source/system_Device.c old mode 100755 new mode 100644 diff --git a/system/CMSIS/Version 3.01 b/system/CMSIS/Version 3.01 old mode 100755 new mode 100644 diff --git a/system/RFduino/include/nrf51_bitfields.h b/system/RFduino/include/nrf51_bitfields.h old mode 100755 new mode 100644 diff --git a/system/RFduino/include/nrf_gpiote.h b/system/RFduino/include/nrf_gpiote.h old mode 100755 new mode 100644 diff --git a/variants/RFduino/pins_arduino.h b/variants/RFduino/pins_arduino.h old mode 100755 new mode 100644