From: travisutk Date: Fri, 6 Nov 2009 03:51:41 +0000 (+0000) Subject: LED off by default. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=8869ee2fe66d402ec6e56f256098486c6904c871 LED off by default. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@223 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- 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();