codecに設定する音量の最大の変更 -4db -> -10db

git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_mcu@119 013db118-44a6-b54f-8bf7-843cb86687b1
This commit is contained in:
fujita_ryohei 2010-04-02 06:43:45 +00:00
parent 033a70af66
commit 4918ca455d

View File

@ -29,7 +29,8 @@ u8 adc_raw_dep;
8tics毎に呼ばれADCを停止します
 
======================================================== */
/*
// max -4db
static const u8 slider_to_codec[64] =
{
127, 125, 124, 123, 121, 120, 119, 117,
@ -41,8 +42,20 @@ static const u8 slider_to_codec[64] =
63, 62, 61, 59, 58, 57, 55, 54,
53, 51, 50, 49, 47, 46, 45, 44
};
*/
// max -10db
static const u8 slider_to_codec[64] =
{
127, 126, 125, 124, 123, 122, 121, 120,
119, 118, 117, 116, 115, 114, 113, 112,
111, 110, 109, 109, 108, 107, 106, 105,
104, 103, 102, 101, 100, 99, 98, 97,
96, 95, 94, 93, 92, 91, 90, 89,
88, 87, 86, 85, 84, 83, 82, 81,
81, 80, 79, 78, 77, 76, 75, 74,
73, 72, 71, 70, 69, 68, 67, 66
};
void tsk_adc( )
{