Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.
Upstream: https://github.com/ARMmbed/DAPLink
tools/post_build_script.sh@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 | #!/bin/bash -e |
Pawel Zarembski |
0:01f31e923fe2 | 2 | ## |
Pawel Zarembski |
0:01f31e923fe2 | 3 | ## DAPLink Interface Firmware |
Pawel Zarembski |
0:01f31e923fe2 | 4 | ## Copyright (c) 2009-2016, ARM Limited, All Rights Reserved |
Pawel Zarembski |
0:01f31e923fe2 | 5 | ## SPDX-License-Identifier: Apache-2.0 |
Pawel Zarembski |
0:01f31e923fe2 | 6 | ## |
Pawel Zarembski |
0:01f31e923fe2 | 7 | ## Licensed under the Apache License, Version 2.0 (the "License"); you may |
Pawel Zarembski |
0:01f31e923fe2 | 8 | ## not use this file except in compliance with the License. |
Pawel Zarembski |
0:01f31e923fe2 | 9 | ## You may obtain a copy of the License at |
Pawel Zarembski |
0:01f31e923fe2 | 10 | ## |
Pawel Zarembski |
0:01f31e923fe2 | 11 | ## http://www.apache.org/licenses/LICENSE-2.0 |
Pawel Zarembski |
0:01f31e923fe2 | 12 | ## |
Pawel Zarembski |
0:01f31e923fe2 | 13 | ## Unless required by applicable law or agreed to in writing, software |
Pawel Zarembski |
0:01f31e923fe2 | 14 | ## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
Pawel Zarembski |
0:01f31e923fe2 | 15 | ## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Pawel Zarembski |
0:01f31e923fe2 | 16 | ## See the License for the specific language governing permissions and |
Pawel Zarembski |
0:01f31e923fe2 | 17 | ## limitations under the License. |
Pawel Zarembski |
0:01f31e923fe2 | 18 | ## |
Pawel Zarembski |
0:01f31e923fe2 | 19 | |
Pawel Zarembski |
0:01f31e923fe2 | 20 | export PROJECT_DIR=build |
Pawel Zarembski |
0:01f31e923fe2 | 21 | export TOOLS=../../../tools |
Pawel Zarembski |
0:01f31e923fe2 | 22 | |
Pawel Zarembski |
0:01f31e923fe2 | 23 | python --version 2> /dev/null |
Pawel Zarembski |
0:01f31e923fe2 | 24 | |
Pawel Zarembski |
0:01f31e923fe2 | 25 | fromelf --bin $PROJECT_DIR/*.axf -o $PROJECT_DIR/firmware.bin |
Pawel Zarembski |
0:01f31e923fe2 | 26 | |
Pawel Zarembski |
0:01f31e923fe2 | 27 | fromelf --i32 $PROJECT_DIR/*.axf -o $PROJECT_DIR/firmware.hex |
Pawel Zarembski |
0:01f31e923fe2 | 28 | |
Pawel Zarembski |
0:01f31e923fe2 | 29 | python ${TOOLS}/post_compute_crc.py ${PROJECT_DIR}/firmware.hex ${PROJECT_DIR}/firmware_crc |