diff options
author | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-07-25 14:06:33 +0000 |
---|---|---|
committer | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-07-25 14:06:33 +0000 |
commit | 689813a2e262fcc373d6e41a460b9c736dfd1f3b (patch) | |
tree | ca66a27472925e8b8bb4430a66e35e2981cd121c /demos | |
parent | f7bb819a4ac71df34e791c17dd9b2b8e2d982cd6 (diff) | |
download | ChibiOS-689813a2e262fcc373d6e41a460b9c736dfd1f3b.tar.gz ChibiOS-689813a2e262fcc373d6e41a460b9c736dfd1f3b.tar.bz2 ChibiOS-689813a2e262fcc373d6e41a460b9c736dfd1f3b.zip |
[ARDUINOMEGA] Fix comment position
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7091 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r-- | demos/AVR/RT-ARDUINOMEGA/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/AVR/RT-ARDUINOMEGA/main.c b/demos/AVR/RT-ARDUINOMEGA/main.c index a2563d2a9..23fdbddf6 100644 --- a/demos/AVR/RT-ARDUINOMEGA/main.c +++ b/demos/AVR/RT-ARDUINOMEGA/main.c @@ -43,10 +43,11 @@ int main(void) { halInit();
chSysInit();
+ palClearPad(IOPORT2, PORTB_LED1);
+
/*
* Activates the serial driver 1 using the driver default configuration.
*/
- palClearPad(IOPORT2, PORTB_LED1);
sdStart(&SD1, NULL);
/*
|