commit 61366242274278f0df8f4f7f708cf8b367849fd7 Author: liyp Date: Tue Aug 25 21:50:58 2026 -0400 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..58d6946 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# 忽略 Projects 文件夹下的所有内容 +Projects/* +# 但不忽略 Projects/Tools 文件夹 +!Projects/Tools +# 不忽略 Projects/Tools 文件夹下的所有内容 +!Projects/Tools/** \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e64573b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,20 @@ +[submodule "Bsp"] + path = Bsp + url = https://git.linuxacme.com/iorebuild/VoiletBspStm32F10x.git + branch = main +[submodule "System"] + path = System + url = https://git.linuxacme.com/iorebuild/Stm32F10xSystem.git + branch = main +[submodule "StdLib"] + path = StdLib + url = https://git.linuxacme.com/iorebuild/Stm32F10xStdLib.git + branch = main +[submodule "ThirdLib/LetterShell"] + path = ThirdLib/LetterShell + url = https://git.linuxacme.com/iorebuild/LetterShell.git + branch = main +[submodule "ThirdLib/ThreadX"] + path = ThirdLib/ThreadX + url = https://git.linuxacme.com/iorebuild/CortexM3ThreadXV6.git + branch = main diff --git a/Projects/Tools/fromelf.exe b/Projects/Tools/fromelf.exe new file mode 100644 index 0000000..193de17 Binary files /dev/null and b/Projects/Tools/fromelf.exe differ diff --git a/Projects/Tools/srecord-1.65.0-win64.exe b/Projects/Tools/srecord-1.65.0-win64.exe new file mode 100644 index 0000000..55c7148 Binary files /dev/null and b/Projects/Tools/srecord-1.65.0-win64.exe differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..a503ce0 --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +1、克隆仓库 + +``` +git clone --recurse https://git.linuxacme.com/iorebuild/Stm32F10xProject.git +``` + +2、将子模块切换为main分支 + +``` +cd Stm32F10xProject +``` + +``` +git submodule foreach "git checkout main" +``` + +3、进入工程目录 + +``` +cd Projects +``` + +``` +git clone 'your_project' +``` +