-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 219300 b: refs/heads/master c: a7a1778 h: refs/heads/master v: v3
- Loading branch information
Antti Palosaari
authored and
Mauro Carvalho Chehab
committed
Oct 21, 2010
1 parent
f43439c
commit 6f783a2
Showing
4 changed files
with
102 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: ae54a699c3d625ae2b4f87350ecb97ba034a656b | ||
refs/heads/master: a7a177877cbfa0de15410a4d00984bdb2aaf4ea6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/* | ||
* LeadTek Y04G0051 remote controller keytable | ||
* | ||
* Copyright (C) 2010 Antti Palosaari <crope@iki.fi> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program; if not, write to the Free Software Foundation, Inc., | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
*/ | ||
|
||
#include <media/rc-map.h> | ||
|
||
static struct ir_scancode leadtek_y04g0051[] = { | ||
{ 0x0300, KEY_POWER2 }, | ||
{ 0x0303, KEY_SCREEN }, | ||
{ 0x0304, KEY_RIGHT }, | ||
{ 0x0305, KEY_1 }, | ||
{ 0x0306, KEY_2 }, | ||
{ 0x0307, KEY_3 }, | ||
{ 0x0308, KEY_LEFT }, | ||
{ 0x0309, KEY_4 }, | ||
{ 0x030a, KEY_5 }, | ||
{ 0x030b, KEY_6 }, | ||
{ 0x030c, KEY_UP }, | ||
{ 0x030d, KEY_7 }, | ||
{ 0x030e, KEY_8 }, | ||
{ 0x030f, KEY_9 }, | ||
{ 0x0310, KEY_DOWN }, | ||
{ 0x0311, KEY_AGAIN }, | ||
{ 0x0312, KEY_0 }, | ||
{ 0x0313, KEY_OK }, /* 1st ok */ | ||
{ 0x0314, KEY_MUTE }, | ||
{ 0x0316, KEY_OK }, /* 2nd ok */ | ||
{ 0x031e, KEY_VIDEO }, /* 2nd video */ | ||
{ 0x031b, KEY_AUDIO }, | ||
{ 0x031f, KEY_TEXT }, | ||
{ 0x0340, KEY_SLEEP }, | ||
{ 0x0341, KEY_DOT }, | ||
{ 0x0342, KEY_REWIND }, | ||
{ 0x0343, KEY_PLAY }, | ||
{ 0x0344, KEY_FASTFORWARD }, | ||
{ 0x0345, KEY_TIME }, | ||
{ 0x0346, KEY_STOP }, /* 2nd stop */ | ||
{ 0x0347, KEY_RECORD }, | ||
{ 0x0348, KEY_CAMERA }, | ||
{ 0x0349, KEY_ESC }, | ||
{ 0x034a, KEY_NEW }, | ||
{ 0x034b, KEY_RED }, | ||
{ 0x034c, KEY_GREEN }, | ||
{ 0x034d, KEY_YELLOW }, | ||
{ 0x034e, KEY_BLUE }, | ||
{ 0x034f, KEY_MENU }, | ||
{ 0x0350, KEY_STOP }, /* 1st stop */ | ||
{ 0x0351, KEY_CHANNEL }, | ||
{ 0x0352, KEY_VIDEO }, /* 1st video */ | ||
{ 0x0353, KEY_EPG }, | ||
{ 0x0354, KEY_PREVIOUS }, | ||
{ 0x0355, KEY_NEXT }, | ||
{ 0x0356, KEY_TV }, | ||
{ 0x035a, KEY_VOLUMEDOWN }, | ||
{ 0x035b, KEY_CHANNELUP }, | ||
{ 0x035e, KEY_VOLUMEUP }, | ||
{ 0x035f, KEY_CHANNELDOWN }, | ||
}; | ||
|
||
static struct rc_keymap leadtek_y04g0051_map = { | ||
.map = { | ||
.scan = leadtek_y04g0051, | ||
.size = ARRAY_SIZE(leadtek_y04g0051), | ||
.ir_type = IR_TYPE_NEC, | ||
.name = RC_MAP_LEADTEK_Y04G0051, | ||
} | ||
}; | ||
|
||
static int __init init_rc_map_leadtek_y04g0051(void) | ||
{ | ||
return ir_register_map(&leadtek_y04g0051_map); | ||
} | ||
|
||
static void __exit exit_rc_map_leadtek_y04g0051(void) | ||
{ | ||
ir_unregister_map(&leadtek_y04g0051_map); | ||
} | ||
|
||
module_init(init_rc_map_leadtek_y04g0051) | ||
module_exit(exit_rc_map_leadtek_y04g0051) | ||
|
||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters