Included new library
This commit is contained in:
parent
b3c111dc89
commit
9519f3a444
2
io/io
2
io/io
@ -1 +1 @@
|
|||||||
Subproject commit 82a6b179df401c440822e2abb6d421ff0e4a0e4b
|
Subproject commit 7396831828b4fe4d01c3078e8a8decf0cf2b8132
|
@ -128,9 +128,15 @@
|
|||||||
</ToolchainSettings>
|
</ToolchainSettings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Compile Include="io\io.hpp">
|
||||||
|
<SubType>compile</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="main.cpp">
|
<Compile Include="main.cpp">
|
||||||
<SubType>compile</SubType>
|
<SubType>compile</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="io" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(AVRSTUDIO_EXE_PATH)\\Vs\\Compiler.targets" />
|
<Import Project="$(AVRSTUDIO_EXE_PATH)\\Vs\\Compiler.targets" />
|
||||||
</Project>
|
</Project>
|
18
io/main.cpp
18
io/main.cpp
@ -1,18 +1,6 @@
|
|||||||
/*
|
#include "io/io.hpp"
|
||||||
* io.cpp
|
|
||||||
*
|
|
||||||
* Created: 26/07/2019 01:50:19 PM
|
|
||||||
* Author : BlackMark
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <avr/io.h>
|
int main()
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
{
|
||||||
DDRB = (1 << PB5);
|
return 0;
|
||||||
PORTB |= (1 << PB5);
|
|
||||||
|
|
||||||
/* Replace with your application code */
|
|
||||||
while (1) {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user