20 lines
215 B
C
20 lines
215 B
C
|
/*
|
||
|
* 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");
|
||
|
}
|
||
|
}
|
||
|
|