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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
/****************************************************************************
** hw_pcmak.c ***********************************************************
****************************************************************************
*
* routines for Logitech receiver
*
* Copyright (C) 1999 Christoph Bartelmus <lirc@bartelmus.de>
* modified for pcmak serial/USB-ftdi receiver P_awe_L <pablozrudnika@wp.pl>
*
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifndef LIRC_IRTTY
/* could also be /dev/ttyS0 if it's a serial receiver */
#define LIRC_IRTTY "/dev/ttyUSB0"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <limits.h>
#include <signal.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "lirc_driver.h"
#include "lirc/serial.h"
#define TIMEOUT 50000
static const logchannel_t logchannel = LOG_DRIVER;
static unsigned char b;
static struct timeval start, end, last;
static lirc_t signal_length;
static ir_code pre, code;
static int repeat_counter, pressed_key;
//Forwards:
static int pcmak_decode(struct ir_remote* remote, struct decode_ctx_t* ctx);
static int pcmak_init(void);
static int pcmak_deinit(void);
static char* pcmak_rec(struct ir_remote* remotes);
const struct driver hw_pcmak = {
.name = "pcmak",
.device = LIRC_IRTTY,
.features = LIRC_CAN_REC_LIRCCODE,
.send_mode = 0,
.rec_mode = LIRC_MODE_LIRCCODE,
.code_length = 16,
.init_func = pcmak_init,
.deinit_func = pcmak_deinit,
.open_func = default_open,
.close_func = default_close,
.send_func = NULL,
.rec_func = pcmak_rec,
.decode_func = pcmak_decode,
.drvctl_func = NULL,
.readdata = NULL,
.api_version = 3,
.driver_version = "0.10.2",
.info = "No info available",
.device_hint = "/dev/tty[0-9]*",
};
const struct driver* hardwares[] = { &hw_pcmak, (const struct driver*)NULL };
int pcmak_decode(struct ir_remote* remote, struct decode_ctx_t* ctx)
{
if (!map_code(remote, ctx, 8, pre, 8, code, 0, 0))
return 0;
map_gap(remote, ctx, &start, &last, signal_length);
return 1;
}
int pcmak_init(void)
{
signal_length = drv.code_length * 1000000 / 1200;
if (!tty_create_lock(drv.device)) {
log_error("could not create lock files");
return 0;
}
drv.fd = open(drv.device, O_RDWR | O_NONBLOCK | O_NOCTTY);
if (drv.fd < 0) {
log_error("could not open %s", drv.device);
log_perror_err("pcmak_init()");
tty_delete_lock();
return 0;
}
if (!tty_reset(drv.fd)) {
log_error("could not reset tty");
pcmak_deinit();
return 0;
}
if (!tty_setbaud(drv.fd, 1200)) {
log_error("could not set baud rate");
pcmak_deinit();
return 0;
}
return 1;
}
int pcmak_deinit(void)
{
close(drv.fd);
tty_delete_lock();
return 1;
}
char* pcmak_rec(struct ir_remote* remotes)
{
char* m;
int i = 0;
last = end;
gettimeofday(&start, NULL);
while (1) {
i++;
if (i > 0) {
if (!waitfordata(TIMEOUT)) {
log_trace("timeout reading byte %d", i);
return NULL;
}
}
if (read(drv.fd, &b, 1) != 1) {
log_error("reading of byte %d failed", i);
log_perror_err(NULL);
return NULL;
}
log_trace("byte %d: %02x", i, b);
if (b == 0xAA) {
repeat_counter = 0;
} else {
/* Range of allowed button codes */
if (/* PCMAK codes */
(b >= 0x01 && b <= 0x2B) ||
/* codes with shift button */
(b >= 0x41 && b <= 0x6B) ||
/* MINIMAK/MINIMAK LASER codes */
(b >= 0x2F && b <= 0x31) ||
/* MINIMAK codes with shift */
b == 0x5F || b == 0x79 || b == 0x75) {
if (repeat_counter < 1) {
repeat_counter++;
pressed_key = b;
} else {
if (pressed_key == b) {
gettimeofday(&end, NULL);
pre = 0xAA;
code = (ir_code)b;
m = decode_all(remotes);
return m;
}
}
}
}
}
return NULL;
}
|