crashtest-r0ket/misc/openbeacon/lpc13xx/hid-client/hid_listen.c

66 lines
1.7 KiB
C

/* HID Listen, http://www.pjrc.com/teensy/hid_listen.html
* Listens (and prints) all communication received from a USB HID device,
* which is useful for view debug messages from the Teensy USB Board.
* Copyright 2008, PJRC.COM, LLC
*
* You may redistribute this program 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 <unistd.h>
#include "rawhid.h"
static void delay_ms(unsigned int msec)
{
usleep(msec * 1000);
}
int main(void)
{
unsigned char buf[64],prev;
rawhid_t *hid;
int num, count;
printf("Waiting for device:");
fflush(stdout);
prev=0;
while (1) {
hid = rawhid_open_only1(0x16c0, 0x08b4, 0,0);
if (hid == NULL) {
printf(".");
fflush(stdout);
delay_ms(1000);
continue;
}
printf("\nListening:\n");
while (1) {
num = rawhid_read(hid, buf, sizeof(buf), 200);
if (num < 0) break;
if (num == 0) continue;
if(prev==buf[0]) continue;
prev=buf[0];
printf("RX:");
for (count=0; count<num; count++) {
printf(" 0x%02X",buf[count]);
}
printf("\n");
}
rawhid_close(hid);
printf("\nDevice disconnected.\nWaiting for new device:");
}
return 0;
}