15 lines
348 B
C
15 lines
348 B
C
#ifndef _AUDIO_OUTPUT_DAC_H_
|
|
#define _AUDIO_OUTPUT_DAC_H_
|
|
|
|
#include "typedef.h"
|
|
|
|
#define TYPE_DAC_AGAIN (0x01)
|
|
#define TYPE_DAC_DGAIN (0x02)
|
|
|
|
extern int audio_dac_vol_set(u8 type, u32 ch, u16 gain, u8 fade_en);
|
|
extern int audio_dac_vol_mute(u8 mute, u8 fade);
|
|
extern int audio_dac_vol_mute_lock(u8 lock);
|
|
|
|
#endif // _AUDIO_OUTPUT_DAC_H_
|
|
|