summaryrefslogtreecommitdiffstats
path: root/app/led.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/led.c')
-rw-r--r--app/led.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/led.c b/app/led.c
index a6bd8ea..9dcc543 100644
--- a/app/led.c
+++ b/app/led.c
@@ -9,8 +9,8 @@ static int led = 0;
void
led_init (void)
{
- MAP_OUTPUT_OD(LED);
- SET(LED);
+ MAP_OUTPUT_OD (LED);
+ SET (LED);
}
@@ -18,14 +18,14 @@ led_init (void)
void
led_clear (void)
{
- SET(LED);
- led =0;
+ SET (LED);
+ led = 0;
}
void
led_set (void)
{
- CLEAR(LED);
+ CLEAR (LED);
led = 200;
}