From 8869ee2fe66d402ec6e56f256098486c6904c871 Mon Sep 17 00:00:00 2001 From: travisutk Date: Fri, 6 Nov 2009 03:51:41 +0000 Subject: [PATCH] LED off by default. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@223 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- firmware/goodfet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/goodfet.c b/firmware/goodfet.c index b9485aa..744aa9d 100644 --- a/firmware/goodfet.c +++ b/firmware/goodfet.c @@ -22,7 +22,7 @@ void init(){ //LED out and on. PLEDDIR |= PLEDPIN; - PLEDOUT |= PLEDPIN; + PLEDOUT &= ~PLEDPIN; //Setup clocks, unique to each '430. msp430_init_dco(); -- 2.20.1