Compare commits

...

1 Commits

Author SHA1 Message Date
414ebbebff Refactor uart utils to separate submodule 2020-04-07 03:54:40 +02:00
5 changed files with 10 additions and 5 deletions

3
.gitmodules vendored
View File

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

Submodule uart/io updated: 986ceef65d...80de36ee7e

1
uart/type Submodule

Submodule uart/type added at 068a179cef

View File

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