summaryrefslogtreecommitdiff
path: root/blink
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2012-05-15 18:08:41 +0000
committerChristian Pointner <equinox@spreadspace.org>2012-05-15 18:08:41 +0000
commitd2f697b84dd22e0541f8bc0f7678666a4e97b828 (patch)
tree1ecd4b252de2cdff3e762054013dc15bcfa5987c /blink
parentclean up at makefile (diff)
fixed led lib
git-svn-id: https://svn.spreadspace.org/avr/trunk@7 aa12f405-d877-488e-9caf-2d797e2a1cc7
Diffstat (limited to 'blink')
-rw-r--r--blink/led.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/blink/led.c b/blink/led.c
index 5f4cb02..d24af16 100644
--- a/blink/led.c
+++ b/blink/led.c
@@ -36,7 +36,7 @@
void led_init(void)
{
PORTE = 0x00;
- DDRE = 0x00;
+ DDRE = 1<<PORTE6;
}
void led_on(void)