mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2025-12-26 23:26:46 +01:00
event struct changed
This commit is contained in:
@@ -20,7 +20,6 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
int fd, len;
|
int fd, len;
|
||||||
struct input_event ev;
|
struct input_event ev;
|
||||||
uint32_t time;
|
|
||||||
|
|
||||||
fd = open("/dev/input/event0", O_RDONLY);
|
fd = open("/dev/input/event0", O_RDONLY);
|
||||||
|
|
||||||
@@ -30,7 +29,8 @@ int main(int argc, char *argv[])
|
|||||||
while (1) {
|
while (1) {
|
||||||
if ((len = read(fd, &ev, sizeof(ev)) < sizeof(struct input_event)))
|
if ((len = read(fd, &ev, sizeof(ev)) < sizeof(struct input_event)))
|
||||||
return -1;
|
return -1;
|
||||||
printf("%u.%06u %u %u %u\n", ev.time.tv_sec, ev.time.tv_usec, ev.type, ev.code, ev.value);
|
//printf("%u.%06u %u %u %u\n", ev.time.tv_sec, ev.time.tv_usec, ev.type, ev.code, ev.value);
|
||||||
|
printf("%u %u %u\n", ev.type, ev.code, ev.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user