hc
2023-11-06 e3e12f52b214121840b44c91de5b3e5af5d3eb84
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * Copyright (C) 2017 Sigma Designs
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 */
 
#include <linux/module.h>
#include <media/rc-map.h>
 
static struct rc_map_table tango_table[] = {
   { 0x4cb4a, KEY_POWER },
   { 0x4cb48, KEY_FILE },
   { 0x4cb0f, KEY_SETUP },
   { 0x4cb4d, KEY_SUSPEND },
   { 0x4cb4e, KEY_VOLUMEUP },
   { 0x4cb44, KEY_EJECTCD },
   { 0x4cb13, KEY_TV },
   { 0x4cb51, KEY_MUTE },
   { 0x4cb52, KEY_VOLUMEDOWN },
 
   { 0x4cb41, KEY_1 },
   { 0x4cb03, KEY_2 },
   { 0x4cb42, KEY_3 },
   { 0x4cb45, KEY_4 },
   { 0x4cb07, KEY_5 },
   { 0x4cb46, KEY_6 },
   { 0x4cb55, KEY_7 },
   { 0x4cb17, KEY_8 },
   { 0x4cb56, KEY_9 },
   { 0x4cb1b, KEY_0 },
   { 0x4cb59, KEY_DELETE },
   { 0x4cb5a, KEY_CAPSLOCK },
 
   { 0x4cb47, KEY_BACK },
   { 0x4cb05, KEY_SWITCHVIDEOMODE },
   { 0x4cb06, KEY_UP },
   { 0x4cb43, KEY_LEFT },
   { 0x4cb01, KEY_RIGHT },
   { 0x4cb0a, KEY_DOWN },
   { 0x4cb02, KEY_ENTER },
   { 0x4cb4b, KEY_INFO },
   { 0x4cb09, KEY_HOME },
 
   { 0x4cb53, KEY_MENU },
   { 0x4cb12, KEY_PREVIOUS },
   { 0x4cb50, KEY_PLAY },
   { 0x4cb11, KEY_NEXT },
   { 0x4cb4f, KEY_TITLE },
   { 0x4cb0e, KEY_REWIND },
   { 0x4cb4c, KEY_STOP },
   { 0x4cb0d, KEY_FORWARD },
   { 0x4cb57, KEY_MEDIA_REPEAT },
   { 0x4cb16, KEY_ANGLE },
   { 0x4cb54, KEY_PAUSE },
   { 0x4cb15, KEY_SLOW },
   { 0x4cb5b, KEY_TIME },
   { 0x4cb1a, KEY_AUDIO },
   { 0x4cb58, KEY_SUBTITLE },
   { 0x4cb19, KEY_ZOOM },
 
   { 0x4cb5f, KEY_RED },
   { 0x4cb1e, KEY_GREEN },
   { 0x4cb5c, KEY_YELLOW },
   { 0x4cb1d, KEY_BLUE },
};
 
static struct rc_map_list tango_map = {
   .map = {
       .scan = tango_table,
       .size = ARRAY_SIZE(tango_table),
       .rc_proto = RC_PROTO_NECX,
       .name = RC_MAP_TANGO,
   }
};
 
static int __init init_rc_map_tango(void)
{
   return rc_map_register(&tango_map);
}
 
static void __exit exit_rc_map_tango(void)
{
   rc_map_unregister(&tango_map);
}
 
module_init(init_rc_map_tango)
module_exit(exit_rc_map_tango)
 
MODULE_AUTHOR("Sigma Designs");
MODULE_LICENSE("GPL");