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
|
/****************************************************************************
** hw_creative.c ***********************************************************
****************************************************************************
*
* routines for Creative receiver
*
* Copyright (C) 1999 Christoph Bartelmus <lirc@bartelmus.de>
*
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifndef LIRC_IRTTY
#define LIRC_IRTTY "/dev/ttyS0"
#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 <sys/ioctl.h>
#include "lirc_driver.h"
#include "lirc/serial.h"
#define NUMBYTES 6
#define TIMEOUT 20000
static const logchannel_t logchannel = LOG_DRIVER;
unsigned char b[NUMBYTES];
struct timeval start, end, last;
lirc_t gap, signal_length;
ir_code pre, code;
//Forwards:
static int creative_decode(struct ir_remote* remote, struct decode_ctx_t* ctx);
static int creative_init(void);
static int creative_deinit(void);
static char* creative_rec(struct ir_remote* remotes);
const struct driver hw_creative = {
.name = "creative",
.device = LIRC_IRTTY,
.features = LIRC_CAN_REC_LIRCCODE,
.send_mode = 0,
.rec_mode = LIRC_MODE_LIRCCODE,
.code_length = 32,
.init_func = creative_init,
.deinit_func = creative_deinit,
.open_func = default_open,
.close_func = default_close,
.send_func = NULL,
.rec_func = creative_rec,
.decode_func = creative_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_creative, (const struct driver*)NULL };
int creative_decode(struct ir_remote* remote, struct decode_ctx_t* ctx)
{
if (!map_code(remote, ctx, 16, pre, 16, code, 0, 0))
return 0;
map_gap(remote, ctx, &start, &last, signal_length);
return 1;
}
int creative_init(void)
{
signal_length = 108000;
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("creative_init()");
tty_delete_lock();
return 0;
}
if (!tty_reset(drv.fd)) {
log_error("could not reset tty");
creative_deinit();
return 0;
}
if (!tty_setbaud(drv.fd, 2400)) {
log_error("could not set baud rate");
creative_deinit();
return 0;
}
return 1;
}
int creative_deinit(void)
{
close(drv.fd);
tty_delete_lock();
return 1;
}
char* creative_rec(struct ir_remote* remotes)
{
char* m;
int i;
b[0] = 0x4d;
b[1] = 0x05;
b[4] = 0xac;
b[5] = 0x21;
last = end;
gettimeofday(&start, NULL);
for (i = 0; i < NUMBYTES; i++) {
if (i > 0) {
if (!waitfordata(TIMEOUT)) {
log_error("timeout reading byte %d", i);
return NULL;
}
}
if (read(drv.fd, &b[i], 1) != 1) {
log_perror_err("reading of byte %d failed", i);
return NULL;
}
if (b[0] != 0x4d || b[1] != 0x05 /* || b[4]!=0xac || b[5]!=0x21 */) {
log_error("bad envelope");
return NULL;
}
if (i == 5) {
if (b[2] != ((~b[3]) & 0xff)) {
log_error("bad checksum");
return NULL;
}
}
log_trace("byte %d: %02x", i, b[i]);
}
gettimeofday(&end, NULL);
/* pre=0x8435; */
pre = reverse((((ir_code)b[4]) << 8) | ((ir_code)b[5]), 16);
code = reverse((((ir_code)b[2]) << 8) | ((ir_code)b[3]), 16);
m = decode_all(remotes);
return m;
}
|