Пейринг Logitech Unifying устройств в Linux
Смысл в том, что Logitech для своих новых радиомышей/клавиатур использует свои особые приемники Unifying (до 5 кажется устройств может работать с одним приемником). Но поскольку это особые логитековские устройства, для того, чтобы привязать новую мышку к старому приемнику нужна особая программа от Логитека. Которая есть только под win32. И которая не заработает под Wine. Нет выхода? Есть! В гугл-группе linux.kernel нашелся добрый человек. Под катом программка на C, которая переводит приемник в режим пейринга.
/*
* Copyright 2011 Benjamin Tissoires <benjamin....@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 <linux/input.h>
#include <linux/hidraw.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#define USB_VENDOR_ID_LOGITECH (__u32)0x046d
#define USB_DEVICE_ID_UNIFYING_RECEIVER (__s16)0xc52b
#define USB_DEVICE_ID_UNIFYING_RECEIVER_2 (__s16)0xc532
int main(int argc, char **argv)
{
int fd;
int res;
struct hidraw_devinfo info;
char magic_sequence[] = {0x10, 0xFF, 0x80, 0xB2, 0x01, 0x00, 0x00};
if (argc == 1) {
= EINVAL;
errno ("No hidraw device given");
perrorreturn 1;
}
/* Open the Device with non-blocking reads. */
= open(argv[1], O_RDWR|O_NONBLOCK);
fd
if (fd < 0) {
("Unable to open device");
perrorreturn 1;
}
/* Get Raw Info */
= ioctl(fd, HIDIOCGRAWINFO, &info);
res if (res < 0) {
("error while getting info from device");
perror} else {
if (info.bustype != BUS_USB ||
.vendor != USB_VENDOR_ID_LOGITECH ||
info(info.product != USB_DEVICE_ID_UNIFYING_RECEIVER &&
.product != USB_DEVICE_ID_UNIFYING_RECEIVER_2)) {
info= EPERM;
errno ("The given device is not a Logitech "
perror"Unifying Receiver");
return 1;
}
}
/* Send the magic sequence to the Device */
= write(fd, magic_sequence, sizeof(magic_sequence));
res if (res < 0) {
("Error: %d\n", errno);
printf("write");
perror} else if (res == sizeof(magic_sequence)) {
("The receiver is ready to pair a new device.\n"
printf"Switch your device on to pair it.\n");
} else {
= ENOMEM;
errno ("write: %d were written instead of %ld.\n", res,
printfsizeof(magic_sequence));
("write");
perror}
(fd);
closereturn 0;
}
Собирать, естественно, имея заголовки ядра linux, командой gcc -o unifying file.c
(где file.c – это файл, содержащий скопипащеный исходник выше, а unifying – имя конечного бинарника) Запускать из-под рута с аргументом к /dev/hidrawN, символизирующим ПЕРВЫЙ hidraw Вашего приемника (у меня это /dev/hidraw0
, например, т.е. ./unifying /dev/hidraw0
).