mirror of
https://github.com/jrcutler/Tiny_IR_Repeater
synced 2024-12-22 00:24:29 +00:00
17 lines
321 B
C
17 lines
321 B
C
/* Name: main.c
|
|
* Author: Justin R. Cutler <justin.r.cutler@gmail.com>
|
|
* Copyright: 2012 Justin R. Cutler
|
|
* License: GPL
|
|
*/
|
|
|
|
#include <avr/io.h>
|
|
|
|
int main(void)
|
|
{
|
|
/* insert your hardware initialization here */
|
|
for(;;){
|
|
/* insert your main loop code here */
|
|
}
|
|
return 0; /* never reached */
|
|
}
|