mirror of
https://github.com/ghsecuritylab/ameba_ws2812b.git
synced 2026-04-05 21:15:21 +00:00
28 lines
715 B
C
28 lines
715 B
C
/*
|
|
* Routines to access hardware
|
|
*
|
|
* Copyright (c) 2013 Realtek Semiconductor Corp.
|
|
*
|
|
* This module is a confidential and proprietary property of RealTek and
|
|
* possession or use of this module requires written permission of RealTek.
|
|
*/
|
|
|
|
|
|
#include "hal_pcm.h"
|
|
|
|
VOID HalPcmOpInit(
|
|
IN VOID *Data
|
|
)
|
|
{
|
|
PHAL_PCM_OP pHalPcmOp = (PHAL_PCM_OP) Data;
|
|
|
|
pHalPcmOp->HalPcmOnOff = HalPcmOnOffRtl8195a;
|
|
pHalPcmOp->HalPcmInit = HalPcmInitRtl8195a;
|
|
pHalPcmOp->HalPcmSetting = HalPcmSettingRtl8195a;
|
|
pHalPcmOp->HalPcmEn = HalPcmEnRtl8195a;
|
|
pHalPcmOp->HalPcmIsrEnAndDis= HalPcmIsrEnAndDisRtl8195a;
|
|
pHalPcmOp->HalPcmDumpReg= HalPcmDumpRegRtl8195a;
|
|
pHalPcmOp->HalPcm= HalPcmRtl8195a;
|
|
}
|
|
|
|
|