-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrc5.h
71 lines (59 loc) · 1.83 KB
/
rc5.h
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
/* vim:fdm=marker ts=4 et ai
* {{{
* fnordlicht firmware next generation
*
* for additional information please
* see http://koeln.ccc.de/prozesse/running/fnordlicht
*
* (c) by Alexander Neumann <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* For more information on the GPL, please go to:
* http://www.gnu.org/copyleft/gpl.html
}}} */
#ifndef RC5_H
#define RC5_H
#include "config.h"
#if RC5_DECODER
#include <inttypes.h>
/* warn, if F_CPU is not defined */
#ifndef F_CPU
#error F_CPU not defined
#endif
/* structs */
struct rc5_t {
union {
uint16_t raw;
struct {
uint8_t code:6; /* first 6 bits: control code */
uint8_t address:5; /* next 5 bits: address */
uint8_t toggle_bit:1; /* next bit is the toggle bit */
uint8_t spare:4; /* spare bits */
};
};
};
struct global_rc5_t {
struct rc5_t received_command;
struct {
uint8_t enabled:1; /* if one, decoder is active */
uint8_t new_data:1; /* if one, new data is available */
};
};
/* global variables */
extern volatile struct global_rc5_t global_rc5;
/* prototypes */
void init_rc5(void);
#endif
#endif