Lines Matching defs:command
107 u32 command = ttpci_budget_debiread(&budget_ci->budget, DEBINOSWAP, DEBIADDR_IR, 2, 1, 0) >> 8;
110 * The msp430 chip can generate two different bytes, command and device
112 * type1: X1CCCCCC, C = command bits (0 - 63)
115 * Each signal from the remote control can generate one or more command
117 * highest bit (X) is set. The first command byte is always generated
121 * Only when we have a command and device byte, a keypress is
126 printk("budget_ci: received byte 0x%02x\n", command);
128 /* Remove repeat bit, we use every command */
129 command = command & 0x7f;
131 /* Is this a RC5 command byte? */
132 if (command & 0x40) {
134 budget_ci->ir.ir_key = command & 0x3f;
144 budget_ci->ir.rc5_device != (command & 0x1f))
150 !!(command & 0x20));
156 !!(command & 0x20));