Included new library

This commit is contained in:
BlackMark 2019-07-26 14:02:12 +02:00
parent b3c111dc89
commit 9519f3a444
3 changed files with 10 additions and 16 deletions

2
io/io

@ -1 +1 @@
Subproject commit 82a6b179df401c440822e2abb6d421ff0e4a0e4b
Subproject commit 7396831828b4fe4d01c3078e8a8decf0cf2b8132

View File

@ -128,9 +128,15 @@
</ToolchainSettings>
</PropertyGroup>
<ItemGroup>
<Compile Include="io\io.hpp">
<SubType>compile</SubType>
</Compile>
<Compile Include="main.cpp">
<SubType>compile</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Folder Include="io" />
</ItemGroup>
<Import Project="$(AVRSTUDIO_EXE_PATH)\\Vs\\Compiler.targets" />
</Project>

View File

@ -1,18 +1,6 @@
/*
* io.cpp
*
* Created: 26/07/2019 01:50:19 PM
* Author : BlackMark
*/
#include "io/io.hpp"
#include <avr/io.h>
int main(void)
int main()
{
DDRB = (1 << PB5);
PORTB |= (1 << PB5);
/* Replace with your application code */
while (1) {
}
return 0;
}