summaryrefslogtreecommitdiffstats
path: root/firmware/notify_led.c
blob: a51881656dcd7f211a54067464c250d41e84ee9f (plain)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 * Notification LED
 *
 * Copyright (c) 2014 Michael Buesch <m@bues.ch>
 *
 * 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.
 *
 * This program 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 this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "notify_led.h"
#include "main.h"

#include <avr/io.h>
#include <avr/eeprom.h>

#include <string.h>


#define NOTIFY_LED_DDR		DDRD
#define NOTIFY_LED_PORT		PORTD
#define NOTIFY_LED_BIT		4

#define PULSE_PAUSE_TIME	msec_to_jiffies(50)
#define LONG_PAUSE_TIME		msec_to_jiffies(3000)


struct notify_led {
	bool state;
	uint8_t count;
	jiffies_t timer;
};

static struct notify_led led;

static uint8_t EEMEM eeprom_notify_led_state = 0;


void notify_led_set(bool on)
{
	uint8_t sreg;

	sreg = irq_disable_save();

	if (led.state != on) {
		led.count = 0;
		led.state = on;
		led.timer = jiffies_get() + PULSE_PAUSE_TIME;

		if (on)
			NOTIFY_LED_PORT |= (1 << NOTIFY_LED_BIT);
		else
			NOTIFY_LED_PORT &= ~(1 << NOTIFY_LED_BIT);

		eeprom_update_byte(&eeprom_notify_led_state, on);
	}

	irq_restore(sreg);
}

bool notify_led_get(void)
{
	return led.state;
}

void notify_led_work(void)
{
	jiffies_t now = jiffies_get();
	uint8_t sreg;

	sreg = irq_disable_save();

	if (led.state && !time_before(now, led.timer)) {
		switch (led.count) {
		default:
			led.count = -1;
			/* fallthrough */
		case 0:
		case 1:
		case 2:
		case 3:
			led.count++;
			led.timer = now + PULSE_PAUSE_TIME;
			NOTIFY_LED_PORT ^= (1 << NOTIFY_LED_BIT);
			break;
		case 4:
			led.count++;
			led.timer = now + LONG_PAUSE_TIME;
			NOTIFY_LED_PORT &= ~(1 << NOTIFY_LED_BIT);
			break;
		}
	}

	irq_restore(sreg);
}

void notify_led_init(void)
{
	NOTIFY_LED_PORT &= ~(1 << NOTIFY_LED_BIT);
	NOTIFY_LED_DDR |= (1 << NOTIFY_LED_BIT);

	memset(&led, 0, sizeof(led));
	led.state = eeprom_read_byte(&eeprom_notify_led_state);
}
bues.ch cgit interface