Init commit

This commit is contained in:
2021-04-27 17:22:34 +02:00
commit 4f6fe6959f
1140 changed files with 1174277 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/sh
# This script can be used to set the path to the cross-compile toolchain
# A default path is set if the path is not supplied via command line
if [ $# -eq 1 ];then
export PATH=$PATH:"$1"
elif [ $# -eq 2 ];then
export PATH=$PATH:"$1":"$2"
else
export PATH=$PATH:"${HOME}/opt/xPacks/@xpack-dev-tools/arm-none-eabi-gcc/10.2.1-1.1.2/.content/bin
"
export PATH=$PATH:"${HOME}/opt/xPacks/@xpack-dev-tools/openocd/0.10.0-15.1/.content/bin"
fi