avermedia-cardbus.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* avermedia-cardbus.h - Keytable for avermedia_cardbus Remote Controller
  2. *
  3. * Imported from ir-keymaps.c
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. */
  10. /* Oldrich Jedlicka <oldium.pro@seznam.cz> */
  11. #ifdef IR_KEYMAPS
  12. static struct ir_scancode avermedia_cardbus[] = {
  13. { 0x00, KEY_POWER },
  14. { 0x01, KEY_TUNER }, /* TV/FM */
  15. { 0x03, KEY_TEXT }, /* Teletext */
  16. { 0x04, KEY_EPG },
  17. { 0x05, KEY_1 },
  18. { 0x06, KEY_2 },
  19. { 0x07, KEY_3 },
  20. { 0x08, KEY_AUDIO },
  21. { 0x09, KEY_4 },
  22. { 0x0a, KEY_5 },
  23. { 0x0b, KEY_6 },
  24. { 0x0c, KEY_ZOOM }, /* Full screen */
  25. { 0x0d, KEY_7 },
  26. { 0x0e, KEY_8 },
  27. { 0x0f, KEY_9 },
  28. { 0x10, KEY_PAGEUP }, /* 16-CH PREV */
  29. { 0x11, KEY_0 },
  30. { 0x12, KEY_INFO },
  31. { 0x13, KEY_AGAIN }, /* CH RTN - channel return */
  32. { 0x14, KEY_MUTE },
  33. { 0x15, KEY_EDIT }, /* Autoscan */
  34. { 0x17, KEY_SAVE }, /* Screenshot */
  35. { 0x18, KEY_PLAYPAUSE },
  36. { 0x19, KEY_RECORD },
  37. { 0x1a, KEY_PLAY },
  38. { 0x1b, KEY_STOP },
  39. { 0x1c, KEY_FASTFORWARD },
  40. { 0x1d, KEY_REWIND },
  41. { 0x1e, KEY_VOLUMEDOWN },
  42. { 0x1f, KEY_VOLUMEUP },
  43. { 0x22, KEY_SLEEP }, /* Sleep */
  44. { 0x23, KEY_ZOOM }, /* Aspect */
  45. { 0x26, KEY_SCREEN }, /* Pos */
  46. { 0x27, KEY_ANGLE }, /* Size */
  47. { 0x28, KEY_SELECT }, /* Select */
  48. { 0x29, KEY_BLUE }, /* Blue/Picture */
  49. { 0x2a, KEY_BACKSPACE }, /* Back */
  50. { 0x2b, KEY_MEDIA }, /* PIP (Picture-in-picture) */
  51. { 0x2c, KEY_DOWN },
  52. { 0x2e, KEY_DOT },
  53. { 0x2f, KEY_TV }, /* Live TV */
  54. { 0x32, KEY_LEFT },
  55. { 0x33, KEY_CLEAR }, /* Clear */
  56. { 0x35, KEY_RED }, /* Red/TV */
  57. { 0x36, KEY_UP },
  58. { 0x37, KEY_HOME }, /* Home */
  59. { 0x39, KEY_GREEN }, /* Green/Video */
  60. { 0x3d, KEY_YELLOW }, /* Yellow/Music */
  61. { 0x3e, KEY_OK }, /* Ok */
  62. { 0x3f, KEY_RIGHT },
  63. { 0x40, KEY_NEXT }, /* Next */
  64. { 0x41, KEY_PREVIOUS }, /* Previous */
  65. { 0x42, KEY_CHANNELDOWN }, /* Channel down */
  66. { 0x43, KEY_CHANNELUP }, /* Channel up */
  67. };
  68. DEFINE_LEGACY_IR_KEYTABLE(avermedia_cardbus);
  69. #else
  70. DECLARE_IR_KEYTABLE(avermedia_cardbus);
  71. #endif