You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
709 B
33 lines
709 B
/*
|
|
* Copyright (c) Hisilicon Technologies Co., Ltd. 2017-2021. All rights reserved.
|
|
* Description: CAB IAPI interface
|
|
* Author: Hisilicon
|
|
* Created: 2017-06-30
|
|
*/
|
|
#ifndef __IAPI_CAB_H__
|
|
#define __IAPI_CAB_H__
|
|
|
|
#include "td_type.h"
|
|
#include "uapi_frontend.h"
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#endif /* __cplusplus */
|
|
|
|
#define QAM_RF_MIN 45000 /* kHz */
|
|
#define QAM_RF_MAX 870000 /* kHz */
|
|
|
|
td_s32 cab_connect(td_u32 tuner_id, const uapi_frontend_connect_para *connect_para, td_u32 time_out);
|
|
td_s32 cab_get_signal_quality(td_u32 tuner_id, td_double snr, td_double ber, td_u32 *signal_quality);
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|
|
|