1 /* budget-ci-old.h - Keytable for budget_ci_old Remote Controller
3 * keymap imported from ir-keymaps.c
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <media/rc-map.h>
15 /* From reading the following remotes:
16 * Zenith Universal 7 / TV Mode 807 / VCR Mode 837
17 * Hauppauge (from NOVA-CI-s box product)
18 * This is a "middle of the road" approach, differences are noted
21 static struct rc_map_table budget_ci_old[] = {
34 { 0x0c, KEY_POWER }, /* RADIO on Hauppauge */
36 { 0x0f, KEY_A }, /* TV on Hauppauge */
37 { 0x10, KEY_VOLUMEUP },
38 { 0x11, KEY_VOLUMEDOWN },
42 { 0x1e, KEY_OPTION }, /* RESERVED on Hauppauge */
44 { 0x20, KEY_CHANNELUP },
45 { 0x21, KEY_CHANNELDOWN },
46 { 0x22, KEY_PREVIOUS }, /* Prev Ch on Zenith, SOURCE on Hauppauge */
47 { 0x24, KEY_RESTART },
49 { 0x26, KEY_CYCLEWINDOWS }, /* MINIMIZE on Hauppauge */
50 { 0x28, KEY_ENTER }, /* VCR mode on Zenith */
54 { 0x2e, KEY_MENU }, /* FULL SCREEN on Hauppauge */
56 { 0x31, KEY_PREVIOUS }, /* VCR mode on Zenith */
58 { 0x34, KEY_FASTFORWARD },
62 { 0x38, KEY_TUNER }, /* TV/VCR on Zenith */
69 static struct rc_map_list budget_ci_old_map = {
71 .scan = budget_ci_old,
72 .size = ARRAY_SIZE(budget_ci_old),
73 .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
74 .name = RC_MAP_BUDGET_CI_OLD,
78 static int __init init_rc_map_budget_ci_old(void)
80 return rc_map_register(&budget_ci_old_map);
83 static void __exit exit_rc_map_budget_ci_old(void)
85 rc_map_unregister(&budget_ci_old_map);
88 module_init(init_rc_map_budget_ci_old)
89 module_exit(exit_rc_map_budget_ci_old)
91 MODULE_LICENSE("GPL");