Included new library
This commit is contained in:
2
io/io
2
io/io
Submodule io/io updated: 82a6b179df...7396831828
@@ -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>
|
||||
18
io/main.cpp
18
io/main.cpp
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user