First publishment of Shimabara Audio Codec Controller library. Including code for ADAU1361 and UMB-ADAU1361A. Working pretty fine. Checked with LPCXpresso 4337 and Unzen_lpc4337

Dependents:   unzen_sample_LPC4088_quickstart unzen_sample_lpcxpresso_4337_callbacks unzen_sample_nucleo_f746 unzen_delay_sample_nucleo_f746 ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers baseaudiocodec.cpp Source File

baseaudiocodec.cpp

00001 
00002 #include "baseaudiocodec.h"
00003 
00004 namespace shimabara 
00005 {
00006     
00007     BaseAudioCodec::BaseAudioCodec( Fs_Type Fs )
00008     {
00009         fs = Fs;
00010     } 
00011 
00012     void BaseAudioCodec::set_line_input_gain(float left_gain, float right_gain, bool mute)
00013     {
00014     }
00015     
00016     void BaseAudioCodec::set_aux_input_gain(float left_gain, float right_gain, bool mute)
00017     {
00018     }
00019     
00020     void BaseAudioCodec::set_mic_input_gain(float left_gain, float right_gain, bool mute)
00021     {
00022     }
00023     
00024     void BaseAudioCodec::set_line_output_gain(float left_gain, float right_gain, bool mute)
00025     {
00026     }
00027     
00028     void BaseAudioCodec::set_hp_output_gain(float left_gain, float right_gain, bool mute)
00029     {
00030     }
00031     
00032  
00033 
00034 }