-
Notifications
You must be signed in to change notification settings - Fork 1
/
button-monitor.c
107 lines (92 loc) · 2.15 KB
/
button-monitor.c
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
/*
* Mini210s Board Demo Utils
* (c) 2013 Jason Pruitt (jrspruitt@gmail.com)
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <signal.h>
/*
* Command line utility for reading on board button presses
* on FriendlyARM Mini210s boards.
* Interfaces with linux-3.0.8/drivers/char/mini210_buttons.c
*/
#define DEVICE "/dev/buttons"
#define KEY_MASK_3 0x00010000
#define KEY_MASK_2 0x00100000
#define KEY_MASK_1 0x01000000
#define KEY_MASK_0 0x10000000
volatile int execute;
// Used to trap ctrl-c interrupt
void trap( int signal )
{
execute = 0;
}
int main( int argc, char *argv[] )
{
int fd;
char ret[8];
int button;
ssize_t size;
// Check cmdline args count or for help.
if ( argc != 1)
{
printf( "Usage: button-monitor\n" );
exit( 1 );
}
// Open buttons device.
fd = open( DEVICE, O_RDONLY );
// Check if opened.
if ( fd == -1 )
{
printf( "Error: Could not open %s\n", DEVICE );
exit( 1 );
}
// Set up signal trap.
signal(SIGINT, &trap);
execute = 1;
while ( execute )
{
// Read button device.
size = read( fd, ret, sizeof( ret ) );
button = strtol( ret, NULL, 16 );
// Check against masks.
if ( button & KEY_MASK_0)
{
printf( "0\n" );
}
else if ( button & KEY_MASK_1)
{
printf( "1\n" );
}
else if ( button & KEY_MASK_2)
{
printf( "2\n" );
}
else if ( button & KEY_MASK_3)
{
printf( "3\n" );
}
}
// Close file handle and exit.
close( fd );
exit( 0 );
}