Refactor uart utils to separate submodule

This commit is contained in:
BlackMark 2020-04-07 03:54:40 +02:00
parent 717a69c231
commit 414ebbebff
5 changed files with 10 additions and 5 deletions

3
.gitmodules vendored
View File

@ -7,3 +7,6 @@
[submodule "uart/flash"]
path = uart/flash
url = git@git.blackmark.me:avr/flash.git
[submodule "uart/type"]
path = uart/type
url = git@git.blackmark.me:avr/type.git

@ -1 +1 @@
Subproject commit 986ceef65d1888e62ba759755def449915d3f9b9
Subproject commit 80de36ee7ee3e6b0842d5eaee81d54062cb496b2

1
uart/type Submodule

@ -0,0 +1 @@
Subproject commit 068a179cef0d1eebe17771270fa82cc3d693c9a5

@ -1 +1 @@
Subproject commit fa0a65a94c84ad3e69fa205a921bf3f57e7eb4f4
Subproject commit 41b9ef74f9138e6eb8559a961d951049db1d7c67

View File

@ -215,6 +215,9 @@
<Compile Include="main.cpp">
<SubType>compile</SubType>
</Compile>
<Compile Include="type\type.hpp">
<SubType>compile</SubType>
</Compile>
<Compile Include="uart\config.hpp">
<SubType>compile</SubType>
</Compile>
@ -233,13 +236,11 @@
<Compile Include="uart\uart.hpp">
<SubType>compile</SubType>
</Compile>
<Compile Include="uart\utils.hpp">
<SubType>compile</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Folder Include="io" />
<Folder Include="flash" />
<Folder Include="type" />
<Folder Include="uart" />
</ItemGroup>
<Import Project="$(AVRSTUDIO_EXE_PATH)\\Vs\\Compiler.targets" />