OSDN Git Service

First commitment for the BlackTank LPC1769.
[blacktank/blacktank.git] / codec_subsystem.h
1 /**
2  * @file codec_subsystem.h
3  * @brief TLV320AIC23B操作関数
4  * @date 2011/02/19
5  * @author takemasa
6  * @details
7  * @ref codec_init 関数を呼ぶとTLV320AIC23Bの初期化を行う。
8  * その前に \ref i2c_init 関数を呼んでおくこと。
9  */
10
11 #ifndef CODEC_SUBSYSTEM_H_
12 #define CODEC_SUBSYSTEM_H_
13
14 /**
15  * @brief TLV320AIC23Bの初期化関数
16  * @details
17  * 初期化文字列を与えてCODECを初期化し、動作を開始させる。
18  * この関数を呼ぶ前に \ref i2c_init 関数を呼んでI2Cペリフェラルを
19  * 初期化しておく。
20  */
21 void codec_init();
22
23 #endif /* CODEC_SUBSYSTEM_H_ */
24