Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.
Upstream: https://github.com/ARMmbed/DAPLink
tools/coding_style/astyle.bat@0:01f31e923fe2, 2020-04-07 (annotated)
- Committer:
- Pawel Zarembski
- Date:
- Tue Apr 07 12:55:42 2020 +0200
- Revision:
- 0:01f31e923fe2
hani: DAPLink with reset workaround
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Pawel Zarembski |
0:01f31e923fe2 | 1 | :: |
Pawel Zarembski |
0:01f31e923fe2 | 2 | :: DAPLink Interface Firmware |
Pawel Zarembski |
0:01f31e923fe2 | 3 | :: Copyright (c) 2009-2016, ARM Limited, All Rights Reserved |
Pawel Zarembski |
0:01f31e923fe2 | 4 | :: SPDX-License-Identifier: Apache-2.0 |
Pawel Zarembski |
0:01f31e923fe2 | 5 | :: |
Pawel Zarembski |
0:01f31e923fe2 | 6 | :: Licensed under the Apache License, Version 2.0 (the "License"); you may |
Pawel Zarembski |
0:01f31e923fe2 | 7 | :: not use this file except in compliance with the License. |
Pawel Zarembski |
0:01f31e923fe2 | 8 | :: You may obtain a copy of the License at |
Pawel Zarembski |
0:01f31e923fe2 | 9 | :: |
Pawel Zarembski |
0:01f31e923fe2 | 10 | :: http://www.apache.org/licenses/LICENSE-2.0 |
Pawel Zarembski |
0:01f31e923fe2 | 11 | :: |
Pawel Zarembski |
0:01f31e923fe2 | 12 | :: Unless required by applicable law or agreed to in writing, software |
Pawel Zarembski |
0:01f31e923fe2 | 13 | :: distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
Pawel Zarembski |
0:01f31e923fe2 | 14 | :: WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Pawel Zarembski |
0:01f31e923fe2 | 15 | :: See the License for the specific language governing permissions and |
Pawel Zarembski |
0:01f31e923fe2 | 16 | :: limitations under the License. |
Pawel Zarembski |
0:01f31e923fe2 | 17 | :: |
Pawel Zarembski |
0:01f31e923fe2 | 18 | |
Pawel Zarembski |
0:01f31e923fe2 | 19 | @echo off |
Pawel Zarembski |
0:01f31e923fe2 | 20 | |
Pawel Zarembski |
0:01f31e923fe2 | 21 | :: Get the source path |
Pawel Zarembski |
0:01f31e923fe2 | 22 | set /p path_to_source=Enter the source path: |
Pawel Zarembski |
0:01f31e923fe2 | 23 | :: a method for removing the surrounding quotes when spaces are used |
Pawel Zarembski |
0:01f31e923fe2 | 24 | :: in the path of a passed directory |
Pawel Zarembski |
0:01f31e923fe2 | 25 | set path_to_source=%path_to_source:"=% |
Pawel Zarembski |
0:01f31e923fe2 | 26 | :: and the types of files to format |
Pawel Zarembski |
0:01f31e923fe2 | 27 | set cpp=*.cpp |
Pawel Zarembski |
0:01f31e923fe2 | 28 | set cc=*.cc |
Pawel Zarembski |
0:01f31e923fe2 | 29 | set c=*.c |
Pawel Zarembski |
0:01f31e923fe2 | 30 | set h=*.h |
Pawel Zarembski |
0:01f31e923fe2 | 31 | set hh=*.hh |
Pawel Zarembski |
0:01f31e923fe2 | 32 | set hh=*.hpp |
Pawel Zarembski |
0:01f31e923fe2 | 33 | |
Pawel Zarembski |
0:01f31e923fe2 | 34 | echo. |
Pawel Zarembski |
0:01f31e923fe2 | 35 | echo formating files of type: |
Pawel Zarembski |
0:01f31e923fe2 | 36 | echo %path_to_source%\%cpp% |
Pawel Zarembski |
0:01f31e923fe2 | 37 | echo %path_to_source%\%cc% |
Pawel Zarembski |
0:01f31e923fe2 | 38 | echo %path_to_source%\%c% |
Pawel Zarembski |
0:01f31e923fe2 | 39 | echo %path_to_source%\%h% |
Pawel Zarembski |
0:01f31e923fe2 | 40 | echo %path_to_source%\%hh% |
Pawel Zarembski |
0:01f31e923fe2 | 41 | echo. |
Pawel Zarembski |
0:01f31e923fe2 | 42 | |
Pawel Zarembski |
0:01f31e923fe2 | 43 | astyle --options=style.txt "%path_to_source%\%cpp%" |
Pawel Zarembski |
0:01f31e923fe2 | 44 | astyle --options=style.txt "%path_to_source%\%cc%" |
Pawel Zarembski |
0:01f31e923fe2 | 45 | astyle --options=style.txt "%path_to_source%\%c%" |
Pawel Zarembski |
0:01f31e923fe2 | 46 | astyle --options=style.txt "%path_to_source%\%hh%" |
Pawel Zarembski |
0:01f31e923fe2 | 47 | astyle --options=style.txt "%path_to_source%\%h%" |
Pawel Zarembski |
0:01f31e923fe2 | 48 | astyle --options=style.txt "%path_to_source%\%hpp%" |
Pawel Zarembski |
0:01f31e923fe2 | 49 | |
Pawel Zarembski |
0:01f31e923fe2 | 50 | |
Pawel Zarembski |
0:01f31e923fe2 | 51 | pause |