changeset 30:48056516b3eb

Make sure our outputs are pulled high.
author darius
date Mon, 10 Apr 2006 17:23:51 +0930
parents 02b67e09ca12
children 4e417d84365e
files testavr.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/testavr.c	Mon Apr 10 17:23:03 2006 +0930
+++ b/testavr.c	Mon Apr 10 17:23:51 2006 +0930
@@ -141,7 +141,7 @@
 
     /* GPIO (2:7) */
     DDRD = 0xfc;
-    PORTD = 0x00;
+    PORTD = 0xfc;
 
     /* Init UART */
     UBRRH = UART_BAUD_SELECT(UART_BAUD_RATE, F_CPU) >> 8;