Hi, I was trying to get the remote of my HVR1100 working today, but did not see any events coming in with evtest. When looking at the code in v4l-dvb/linux/drivers/media/video/cx88/cx88-input.c, I saw that the card (CX88_BOARD_HAUPPAUGE_HVR1100) is mentioned in the detect & configure section: /* detect & configure */ switch (core->board) {} but not in the decode section: /* decode it */ switch (core->board) { ... ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff); ir->release = jiffies + msecs_to_jiffies(120); break; case CX88_BOARD_HAUPPAUGE: case CX88_BOARD_HAUPPAUGE_DVB_T1: case CX88_BOARD_HAUPPAUGE_NOVASE2_S1: case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1: /* I added the following */ case CX88_BOARD_HAUPPAUGE_HVR1100: ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); ir_dprintk("biphase decoded: %x\n", ircode); } When adding the card here to the other Hauppauge cards, it seems to work. Was it just forgotten, or is this done by intention ?? Regards, Michael