summaryrefslogtreecommitdiff
path: root/lib/led.c
blob: 338226b75c3a85acee76eee56a5e576f68d9d16a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 *  spreadspace stm8 utils
 *
 *
 *  Copyright (C) 2017 Christian Pointner <equinox@spreadspace.org>
 *
 *  This file is part of spreadspace stm8 utils.
 *
 *  spreadspace stm8 utils 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 3 of the License, or
 *  any later version.
 *
 *  spreadspace stm8 utils is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with spreadspace stm8 utils. If not, see <http://www.gnu.org/licenses/>.
 */

#include <stm8s.h>

#include "led.h"


#ifndef LED_CNT
#define LED_CNT 0
#endif

#ifndef LED_DIR
#define LED_DIR 0
#endif

#ifdef LED_PINNUM
#define LED_MASK (1<<LED_PINNUM)
#endif

void led_init(void)
{
#if LED_CNT >= 1
  led_off();
  LED_GPIO->DDR |= LED_MASK;
#endif
}

void led_on(void)
{
#if LED_CNT >= 1
#if LED_DIR == 1
  LED_GPIO->ODR |= LED_MASK;
#else
  LED_GPIO->ODR &= ~LED_MASK;
#endif
#endif
}

void led_off(void)
{
#if LED_CNT >= 1
#if LED_DIR == 1
  LED_GPIO->ODR &= ~(LED_MASK);
#else
  LED_GPIO->ODR |= LED_MASK;
#endif
#endif
}

void led_toggle(void)
{
#if LED_CNT >= 1
  LED_GPIO->ODR ^= LED_MASK;
#endif
}