add main.c
This commit is contained in:
parent
edf52eae74
commit
d45d53cff6
1 changed files with 19 additions and 0 deletions
19
main.c
Normal file
19
main.c
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/*
|
||||||
|
* GccApplication1.c
|
||||||
|
*
|
||||||
|
* Created: 10.07.2018 19:39:28
|
||||||
|
* Author : dozed
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <avr/io.h>
|
||||||
|
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
/* Replace with your application code */
|
||||||
|
while (1)
|
||||||
|
{
|
||||||
|
printf("test");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Reference in a new issue