⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 evm5509_aic23_powerdown.c

📁 dsp 5509a MMC 卡 ID号读取 12Mhzx16=192M
💻 C
字号:
/*
 *  Copyright 2004 by Spectrum Digital Incorporated.
 *  All rights reserved. Property of Spectrum Digital Incorporated.
 */

/*
 *  ======== evm5509_aic23_powerDown.c ========
 *  EVM5509_AIC23_powerDown() implementation
 */
 
#include <evm5509.h>
#include <evm5509_aic23.h>

/*
 *  ======== EVM5509_AIC23_powerDown ========
 *  Enable/disable powerdown modes for the DAC and ADC codec subsections
 */
void EVM5509_AIC23_powerDown(EVM5509_AIC23_CodecHandle hCodec, Uint16 sect)
{
    /* Write to codec register */
    EVM5509_AIC23_rset(hCodec, EVM5509_AIC23_POWERDOWN,
        (EVM5509_AIC23_rget(hCodec, EVM5509_AIC23_POWERDOWN) & 0xff00) | (sect & 0xff));
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -