aboutsummaryrefslogtreecommitdiff
path: root/zumo/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'zumo/main.c')
-rw-r--r--zumo/main.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/zumo/main.c b/zumo/main.c
deleted file mode 100644
index ab66db4..0000000
--- a/zumo/main.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#define F_CPU 16000000
-
-#include <avr/io.h>
-#include <util/delay.h>
-
-int main() {
- DDRC |= (1 << DDC7);
- while(1) {
- PORTC |= (1 << PORTC7);
- _delay_ms(500);
- PORTC &= ~(1 << PORTC7);
- _delay_ms(500);
- }
-}
-