Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.

Upstream: https://github.com/ARMmbed/DAPLink

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?

UserRevisionLine numberNew 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 @set TOOLS=..\..\..\tools
Pawel Zarembski 0:01f31e923fe2 20 @set DIR=..\..\..\source\daplink
Pawel Zarembski 0:01f31e923fe2 21
Pawel Zarembski 0:01f31e923fe2 22 @python --version 2> nul
Pawel Zarembski 0:01f31e923fe2 23 @if %errorlevel% neq 0 goto nopython
Pawel Zarembski 0:01f31e923fe2 24
Pawel Zarembski 0:01f31e923fe2 25 @REM Run python script to create or update version_git.h
Pawel Zarembski 0:01f31e923fe2 26 python %TOOLS%\pre_build_script.py
Pawel Zarembski 0:01f31e923fe2 27 @if %errorlevel% neq 0 exit /B %errorlevel%
Pawel Zarembski 0:01f31e923fe2 28
Pawel Zarembski 0:01f31e923fe2 29 @exit /B 0
Pawel Zarembski 0:01f31e923fe2 30
Pawel Zarembski 0:01f31e923fe2 31 :nopython
Pawel Zarembski 0:01f31e923fe2 32 echo Error: python not in PATH. If you are manually building the project, make sure to launch uVision from the python venv
Pawel Zarembski 0:01f31e923fe2 33 @REM Create default version_git.h. This is so the project
Pawel Zarembski 0:01f31e923fe2 34 @REM builds if python is not installed
Pawel Zarembski 0:01f31e923fe2 35 copy %DIR%\version_git_tmpl.txt %DIR%\version_git.h
Pawel Zarembski 0:01f31e923fe2 36 exit /B %errorlevel%
Pawel Zarembski 0:01f31e923fe2 37