.. | .. |
---|
134 | 134 | #define LIRC_SET_WIDEBAND_RECEIVER _IOW('i', 0x00000023, __u32) |
---|
135 | 135 | |
---|
136 | 136 | /* |
---|
| 137 | + * Return the recording timeout, which is either set by |
---|
| 138 | + * the ioctl LIRC_SET_REC_TIMEOUT or by the kernel after setting the protocols. |
---|
| 139 | + */ |
---|
| 140 | +#define LIRC_GET_REC_TIMEOUT _IOR('i', 0x00000024, __u32) |
---|
| 141 | + |
---|
| 142 | +/* |
---|
137 | 143 | * struct lirc_scancode - decoded scancode with protocol for use with |
---|
138 | 144 | * LIRC_MODE_SCANCODE |
---|
139 | 145 | * |
---|
.. | .. |
---|
186 | 192 | * @RC_PROTO_XMP: XMP protocol |
---|
187 | 193 | * @RC_PROTO_CEC: CEC protocol |
---|
188 | 194 | * @RC_PROTO_IMON: iMon Pad protocol |
---|
| 195 | + * @RC_PROTO_RCMM12: RC-MM protocol 12 bits |
---|
| 196 | + * @RC_PROTO_RCMM24: RC-MM protocol 24 bits |
---|
| 197 | + * @RC_PROTO_RCMM32: RC-MM protocol 32 bits |
---|
189 | 198 | */ |
---|
190 | 199 | enum rc_proto { |
---|
191 | 200 | RC_PROTO_UNKNOWN = 0, |
---|
.. | .. |
---|
212 | 221 | RC_PROTO_XMP = 21, |
---|
213 | 222 | RC_PROTO_CEC = 22, |
---|
214 | 223 | RC_PROTO_IMON = 23, |
---|
| 224 | + RC_PROTO_RCMM12 = 24, |
---|
| 225 | + RC_PROTO_RCMM24 = 25, |
---|
| 226 | + RC_PROTO_RCMM32 = 26, |
---|
215 | 227 | }; |
---|
216 | 228 | |
---|
217 | 229 | #endif |
---|