X-Git-Url: https://git.gag.com/?a=blobdiff_plain;ds=sidebyside;f=ao_led.c;h=f2bc179adfc21663a10d62f984ee5a7f25baeccd;hb=6fb26340b150e831a8a9e25e3b68074c29e48dbe;hp=c46e2eba29379481c18b1d4df0f710df765d5d38;hpb=f3f25a1cec7d2a034aa544569cfd23bea1a996c5;p=fw%2Faltos diff --git a/ao_led.c b/ao_led.c index c46e2eba..f2bc179a 100644 --- a/ao_led.c +++ b/ao_led.c @@ -3,8 +3,7 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -18,14 +17,6 @@ #include "ao.h" -void -ao_led_init(void) -{ - P1SEL &= ~3; - P1 &= ~3; - P1DIR |= 3; -} - void ao_led_on(uint8_t colors) { @@ -52,3 +43,10 @@ ao_led_for(uint8_t colors, uint16_t ticks) ao_led_off(colors); } +void +ao_led_init(void) +{ + P1SEL &= ~3; + P1 &= ~3; + P1DIR |= 3; +}