19 lines
189 B
C
19 lines
189 B
C
/*
|
|
* MIC-Week1.c
|
|
*
|
|
* Created: 2-2-2016 11:48:44
|
|
* Author : kenny
|
|
*/
|
|
|
|
#include <avr/io.h>
|
|
|
|
|
|
int main(void)
|
|
{
|
|
/* Replace with your application code */
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|