source: svn/newcon3bcm2_21bu/nexus/app/bir_codes.h

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • Property svn:executable set to *
File size: 2.4 KB
Line 
1/***************************************************************************
2 *     Copyright (c) 2003-2006, Broadcom Corporation
3 *     All Rights Reserved
4 *     Confidential Property of Broadcom Corporation
5 *
6 *  THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE
7 *  AGREEMENT  BETWEEN THE USER AND BROADCOM.  YOU HAVE NO RIGHT TO USE OR
8 *  EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT.
9 *
10 * $brcm_Workfile:  $
11 * $brcm_Revision:  $
12 * $brcm_Date: $
13 *
14 * Module Description:
15 *
16 * Revision History:
17 *
18 * $brcm_Log:  $
19 *
20 ***************************************************************************/
21 
22#ifndef __BIR_CODES_H__
23#define __BIR_CODES_H__
24
25/* IR Code enums */
26typedef enum bIR_codes_t
27{
28    eIR_0          = 0x00,
29    eIR_1          = 0x01,
30    eIR_2          = 0x02,
31    eIR_3          = 0x03,
32    eIR_4          = 0x04,
33    eIR_5          = 0x05,
34    eIR_6          = 0x06,
35    eIR_7          = 0x07,
36    eIR_8          = 0x08,
37    eIR_9          = 0x09,
38    eIR_POWER      = 0x0A,
39    eIR_CH_UP      = 0x0B,
40    eIR_CH_DOWN    = 0x0C,
41    eIR_VOL_UP     = 0x0D,
42    eIR_VOL_DOWN   = 0x0E,
43    eIR_MUTE       = 0x0F,
44    eIR_SELECT     = 0x11,
45    eIR_DOT        = 0x13,/* TODO: test value ('prev' one for all remote button) so update later */
46    eIR_ENTER      = 0x14,/* TODO: test value ('tv/vid' one for all remote button) so update later */
47    eIR_MENU       = 0x19,
48    eIR_GUIDE      = 0x30,
49    eIR_INFO       = 0x33,
50    eIR_UP         = 0x34,
51    eIR_DOWN       = 0x35,
52    eIR_LEFT       = 0x36,
53    eIR_RIGHT      = 0x37,
54    eIR_PRECH      = 0x38,
55    eIR_LANG       = 0x39,
56    eIR_CHMAP      = 0x60,      /* Output channel map on UART */
57    eIR_SCAN       = 0x61,      /* Perform channel scan */
58    eIR_SETUP      = 0x62,      /* Perform default setup */
59    eIR_EXIT       = 0x63,      /* Exit to banner menu */
60    eIR_RFM        = 0x70,      /* RFM selection event (CH 3 - 0x71, CH 4 - 0x72) */
61    eIR_SETCH      = 0x80,      /* Set channel index (7 lsb are channel index) */
62    eIR_VOL_OPT    = 0x83,  /* Volume optimize key code */
63    eIR_DEBUG1     = 0x3a,      /* for debug function 1 button */
64    eIR_DEBUG2     = 0x3b,      /* for debug function 2 button */
65    eIR_POWER_SAVING  = 0xd7,   /* simulate power saving button */
66    eIR_SAP        = 0xfb,      /* SAP */
67
68    eIR_HELP       = 0x56,      /* HELP */
69    eIR_FAV        = 0x52       /* FAV */
70}bIR_codes_t;
71
72
73#endif /* __BIR_CODES_H__ */
Note: See TracBrowser for help on using the repository browser.