source: svn/newcon3bcm2_21bu/magnum/portinginterface/ads/bads_priv.h @ 66

Last change on this file since 66 was 66, checked in by megakiss, 11 years ago

키패드 기능 연결

전원키 누르고 리모콘 누르면 학습
CH+ 간격 1초 증가 MAX:15
CH- 간격 1초 감소 MIN :1

  • Property svn:executable set to *
File size: 1.8 KB
Line 
1/***************************************************************************
2 *     Copyright (c) 2005, 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: bads_priv.h $
11 * $brcm_Revision: Hydra_Software_Devel/1 $
12 * $brcm_Date: 12/13/05 2:55p $
13 *
14 * Module Description:
15 *
16 * Revision History:
17 *
18 * $brcm_Log: /magnum/portinginterface/ads/bads_priv.h $
19 *
20 * Hydra_Software_Devel/1   12/13/05 2:55p dlwin
21 * PR 18598: Add new ADS for 3255
22 *
23 ***************************************************************************/
24
25#ifndef BADS_PRIV_H__
26#define BADS_PRIV_H__
27
28#include "bchp.h"
29#include "bads.h"
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35
36
37/***************************************************************************
38Summary:
39        The handle for Qam In-Band Downstream module.
40
41Description:
42
43See Also:
44        BADS_Open()
45
46****************************************************************************/
47typedef struct BADS_P_Handle
48{
49        uint32_t magicId;                                       /* Used to check if structure is corrupt */
50        BADS_Settings settings;
51
52        void *pImpl;                                            /* Device specific structure */
53} BADS_P_Handle;
54
55/***************************************************************************
56Summary:
57        The handle for Qam In-Band Downstream module.
58
59Description:
60
61See Also:
62        BADS_OpenChannel()
63
64****************************************************************************/
65typedef struct BADS_P_ChannelHandle
66{
67        uint32_t magicId;                                       /* Used to check if structure is corrupt */
68        BADS_Handle hAds;
69
70        void *pImpl;                                            /* Device specific structure */
71} BADS_P_ChannelHandle;
72
73
74
75#ifdef __cplusplus
76}
77#endif
78 
79#endif
80
Note: See TracBrowser for help on using the repository browser.