您的位置:首页 > 移动开发 > Android开发

MTK Android Driver :2G RF para

2014-03-04 11:46 337 查看
一、使用MTK提供的META工具的Update Parameters项读出,存为.ini文件。

二、.ini文件有以下几个部分:

1、【AFC Control】

Initial value=6519

Slope=8.1109

对应变量在m12193.h文件里分别为:

#define PSI_EE (6519)

#define C_PSI_STA (505) /* C_PSI_STA= sta^(-1) * (2^12), sta=2.111 */

C_PSI_STA 修改如下:

/* C_PSI_STA= sta^(-1) * (2^12), sta=2.111 */

Change 505 to 4096/slope.

for example: slope=2.0, so change 1505 to 4096/2=2048

2、【Crystal AFC control】

cap_id=12

对应变量在l1d_custom_rf.h文件里:

#define Custom_RF_XO_CapID 12

3、【GSM900 Sub band,RX loss】

在m12193.c文件里

sAGCGAINOFFSET AGC_PATHLOSS_GSM900[ PLTABLE_SIZE ] =

{ { 15, GAINLOSS( 2.500 ) },

{ 30, GAINLOSS( 5.875 ) },

{ 40, GAINLOSS( 7.625 ) },

{ 50, GAINLOSS( 8.875 ) },

{ 60, GAINLOSS( 9.500 ) },

{ 70, GAINLOSS( 9.750 ) },

{ 80, GAINLOSS( 9.500 ) },

{ 95, GAINLOSS( 8.250 ) },

{ 110, GAINLOSS( 5.375 ) },

{ 124, GAINLOSS( 2.250 ) },

{ 1000, GAINLOSS( 8.625 ) },

{ 1023, GAINLOSS( 3.3750 ) },



{ TABLE_END }

};

4、【DCS1800 Sub band,RX loss】

在m12193.c文件里:

sAGCGAINOFFSET AGC_PATHLOSS_DCS1800[ PLTABLE_SIZE ] =

{ { 515, GAINLOSS( 0.250 ) },

{ 530, GAINLOSS( 0.500 ) },

{ 550, GAINLOSS( 0.875 ) },

{ 580, GAINLOSS( 1.375 ) },

{ 650, GAINLOSS( 1.375 ) },

{ 680, GAINLOSS( 1.125 ) },

{ 710, GAINLOSS( 0.875 ) },

{ 760, GAINLOSS( 0.625 ) },

{ 830, GAINLOSS( 1.125 ) },

{ 885, GAINLOSS( 1.0 ) },



{ TABLE_END }

};

5、【PCS1900 Sub band,RX loss】

在m12193.c文件里:

sAGCGAINOFFSET AGC_PATHLOSS_PCS1900[ PLTABLE_SIZE ] =

{

{ 512, GAINLOSS( 0.0 ) },

{ 550, GAINLOSS( 0.0 ) },

{ 650, GAINLOSS( 0.0 ) },

{ 750, GAINLOSS( 0.0 ) },

{ 800, GAINLOSS( 0.0 ) },

{ 810, GAINLOSS( 0.0 ) },



{ TABLE_END }

};

6、【GSM850 Sub band,RX loss】

在m12193.c文件里:

sAGCGAINOFFSET AGC_PATHLOSS_GSM850[ PLTABLE_SIZE ] =

{

{ 128, GAINLOSS( 0.0 ) },

{ 140, GAINLOSS( 0.0 ) },

{ 150, GAINLOSS( 0.0 ) },

{ 170, GAINLOSS( 0.0 ) },

{ 190, GAINLOSS( 0.0 ) },

{ 210, GAINLOSS( 0.0 ) },

{ 220, GAINLOSS( 0.0 ) },

{ 230, GAINLOSS( 0.0 ) },

{ 251, GAINLOSS( 0.0 ) },



{ TABLE_END }

};

7、【BB TX Parameters】

在l1d_rf.h文件里:

#define BBTX_CALRCSEL 0

#define BBTX_CALRCSEL_H 0

#define BBTX_COMMON_MODE_VOLTAGE 1//COMMON MODE VOLTAGE: 1.5v

#define BBTX_COMMON_MODE_VOLTAGE_H 1//COMMON MODE VOLTAGE: 1.5v

#define BBTX_TRIM_I -1// wait calibration

#define BBTX_TRIM_I_H 0// wait calibration

#define BBTX_TRIM_Q 0// wait calibration

#define BBTX_TRIM_Q_H 0// wait calibration

#define BBTX_OFFSET_I -3// wait calibration

#define BBTX_OFFSET_I_H 0// wait calibration

#define BBTX_OFFSET_Q 7// wait calibration

#define BBTX_OFFSET_Q_H 0// wait calibration

#define BBTX_PHSEL 0// wait calibration

#define BBTX_PHSEL_H 0// wait calibration

#define BBTX_COARSGAIN 0 //XXXXX no use?

8、【GSM900 level,ramp】

APC dc offset=80

Low APC dc offset=0

APC lowest power=15

对应变量在m12193.c文件里分别为:

#define APC_DC_OFFSET 80

#define APC_DC_OFFSET_LOW 0

APC lowest power对应的变量在:

sRAMPDATA GSM_RampData ={

/* lowest power */

//计算方法:

((APC_DC_OFFSET_LOW)<<18) | ((APC_DC_OFFSET)<<8) | 12,

};

9、【DCS1800 level,ramp】

在m12193.c文件里:

sRAMPDATA DCS_RampData ={}

10、【PCS1900 level,ramp】

在m12193.c文件里:

sRAMPDATA PCS_RampData ={}

11、【GSM850 level,ramp】

在m12193.c文件里:

sRAMPDATA GSM850_RampData ={}

12、【BT Info】

13、【ADC control】

在chr_parameter.c文件里:

bmt_customized_struct bmt_custom_chr_def ={}

三、 ini文件内容:

[AFC control]

Initial value=4510

Slope=8.4803

[Crystal AFC control]

cap_id=139

[GSM900 Sub band, RX loss]

Max ARFCN=31,43,77,100,124,1023,-1,0,0,0,0,0

RX loss=4.25000,4.25000,4.37500,4.50000,4.50000,4.12500,0.00000,0.00000,0.00000,0.00000,0.00000,0.000000

RX loss middle=4.25000,4.25000,4.37500,4.50000,4.50000,4.12500,0.00000,0.00000,0.00000,0.00000,0.00000,0.000000

RX loss low=4.25000,4.25000,4.37500,4.50000,4.50000,4.12500,0.00000,0.00000,0.00000,0.00000,0.00000,0.000000

[DCS1800 Sub band, RX loss]

Max ARFCN=515,530,550,580,650,680,710,760,830,885,-1,0

RX loss=4.87500,4.87500,4.87500,5.00000,5.12500,5.25000,5.37500,5.62500,6.00000,6.37500,0.00000,0.000000

RX loss middle=4.87500,4.87500,4.87500,5.00000,5.12500,5.25000,5.37500,5.62500,6.00000,6.37500,0.00000,0.000000

RX loss low=4.87500,4.87500,4.87500,5.00000,5.12500,5.25000,5.37500,5.62500,6.00000,6.37500,0.00000,0.000000

[PCS1900 Sub band, RX loss]

Max ARFCN=550,580,620,660,700,740,780,810,-1,0,0,0

RX loss=8.00000,8.12500,8.25000,8.37500,8.50000,8.62500,8.75000,8.75000,0.00000,0.00000,0.00000,0.000000

RX loss middle=8.00000,8.12500,8.25000,8.37500,8.50000,8.62500,8.75000,8.75000,0.00000,0.00000,0.00000,0.000000

RX loss low=8.00000,8.12500,8.25000,8.37500,8.50000,8.62500,8.75000,8.75000,0.00000,0.00000,0.00000,0.000000

[GSM850 Sub band, RX loss]

Max ARFCN=150,170,190,210,230,251,-1,0,0,0,0,0

RX loss=3.25000,3.37500,3.37500,3.37500,3.50000,3.50000,0.00000,0.00000,0.00000,0.00000,0.00000,0.000000

RX loss middle=3.25000,3.37500,3.37500,3.37500,3.50000,3.50000,0.00000,0.00000,0.00000,0.00000,0.00000,0.000000

RX loss low=3.25000,3.37500,3.37500,3.37500,3.50000,3.50000,0.00000,0.00000,0.00000,0.00000,0.00000,0.000000

[W Coefficients]

W image=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

W real=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

[BB TX Parameters]

BB TX common mode voltage=-1

BB TX gain=-1

BB TX calrcsel=-3

APC bat low voltage=3.50000

APC bat high voltage=4.00000

APC bat low temperature=0.00000

APC bat high temperature=50.00000

Trim I=0

Trim Q=0

Offset I=0

Offset Q=-7

Calibrated flag=1

BB TX phasesel=0

[GSM900 level, ramp]

APC dc offset=80

Low APC dc offset=0

APC lowest power=15

TX power level={165,172,182,194,209,146,168,194,226,266,316,378,456,530,630,630}

profile 0 ramp up={0,0,0,0,0,0,0,0,19,60,160,240,255,255,255,255}

profile 0 ramp down={255,255,255,255,255,255,255,210,80,0,0,0,0,0,0,0}

profile 1 ramp up={0,0,0,0,0,0,0,0,6,60,160,240,255,255,255,255}

profile 1 ramp down={255,255,255,255,255,255,255,210,80,0,0,0,0,0,0,0}

profile 2 ramp up={0,0,0,0,0,0,0,0,0,25,60,160,255,255,255,255}

profile 2 ramp down={255,255,255,255,255,255,255,210,80,0,0,0,0,0,0,0}

profile 3 ramp up={0,0,0,0,0,0,0,0,30,50,60,160,240,255,255,255}

profile 3 ramp down={255,255,255,255,255,255,255,210,80,0,0,0,0,0,0,0}

profile 4 ramp up={0,0,0,0,0,0,0,0,0,21,60,160,240,255,255,255}

profile 4 ramp down={255,255,255,255,255,255,255,210,80,0,0,0,0,0,0,0}

profile 5 ramp up={0,0,0,0,0,0,0,0,0,0,31,93,255,255,255,255}

profile 5 ramp down={255,255,255,255,255,255,255,210,80,0,0,0,0,0,0,0}

profile 6 ramp up={0,0,0,0,0,0,0,0,0,13,60,128,255,255,255,255}

profile 6 ramp down={255,255,255,255,255,255,210,80,0,0,0,0,0,0,0,0}

profile 7 ramp up={0,0,0,0,0,0,0,0,0,0,30,160,200,255,255,255}

profile 7 ramp down={255,255,255,255,255,255,210,80,0,0,0,0,0,0,0,0}

profile 8 ramp up={0,0,0,0,0,0,0,0,0,0,26,60,160,240,255,255}

profile 8 ramp down={255,255,255,255,255,255,210,80,0,0,0,0,0,0,0,0}

profile 9 ramp up={0,0,0,0,0,0,0,0,0,8,60,133,240,255,255,255}

profile 9 ramp down={255,255,255,255,255,255,210,80,0,0,0,0,0,0,0,0}

profile 10 ramp up={0,0,0,0,0,0,0,0,0,30,60,160,200,255,255,255}

profile 10 ramp down={255,255,255,255,255,255,210,80,0,0,0,0,0,0,0,0}

profile 11 ramp up={0,0,0,0,0,0,0,0,0,0,20,60,142,255,255,255}

profile 11 ramp down={255,255,255,255,255,255,210,80,0,0,0,0,0,0,0,0}

profile 12 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 12 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 13 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 13 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 14 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 14 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 15 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,232,255,255}

profile 15 ramp down={255,255,255,255,197,138,78,32,10,0,0,0,0,0,0,0}

Subband max arfcn=1,40,80,124,975,1023,-1,-1,-1,-1,-1

Subband mid level=11,11,11,11,11,11,19,19,19,19,19

Subband high weight=0.99799,0.99890,1.00000,1.00397,0.99695,0.99799,0.00000,0.00000,0.00000,0.00000,0.000000

Subband low weight=0.99799,0.99890,1.00000,1.00397,0.99695,0.99799,0.00000,0.00000,0.00000,0.00000,0.000000

Battery compensate, low voltage, low temperature=1.00000

Battery compensate, low voltage, mid temperature=1.00000

Battery compensate, low voltage, high temperature=1.00000

Battery compensate, mid voltage, low temperature=1.00000

Battery compensate, mid voltage, mid temperature=1.00000

Battery compensate, mid voltage, high temperature=1.00000

Battery compensate, high voltage, low temperature=1.00000

Battery compensate, high voltage, mid temperature=1.00000

Battery compensate, high voltage, high temperature=1.00000

TX AFC DAC offset=-1/*l1d_data.c AFC_Dac_TRx_Offset[2]*/

[DCS1800 level, ramp]

APC dc offset=80

Low APC dc offset=0

APC lowest power=12

TX power level={152,157,164,172,183,196,131,148,170,196,228,268,319,383,443,547}

profile 0 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,225,255,255,255}

profile 0 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 1 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,225,255,255,255}

profile 1 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 2 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,225,255,255,255}

profile 2 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 3 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,225,255,255,255}

profile 3 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 4 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,225,255,255,255}

profile 4 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 5 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,225,255,255,255}

profile 5 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 6 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,225,255,255,255}

profile 6 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 7 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,225,255,255,255}

profile 7 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 8 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 8 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 9 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 9 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 10 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 10 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 11 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 11 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 12 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 12 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 13 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 13 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 14 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 14 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 15 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 15 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

Subband max arfcn=520,560,600,630,660,680,720,780,810,840,885

Subband mid level=7,7,7,7,7,7,7,7,7,7,7

Subband high weight=1.00293,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00183,1.00397,1.005860

Subband low weight=1.00293,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00183,1.00397,1.005860

Battery compensate, low voltage, low temperature=1.00000

Battery compensate, low voltage, mid temperature=1.00000

Battery compensate, low voltage, high temperature=1.00000

Battery compensate, mid voltage, low temperature=1.00000

Battery compensate, mid voltage, mid temperature=1.00000

Battery compensate, mid voltage, high temperature=1.00000

Battery compensate, high voltage, low temperature=1.00000

Battery compensate, high voltage, mid temperature=1.00000

Battery compensate, high voltage, high temperature=1.00000

TX AFC DAC offset=0/*l1d_data.c AFC_Dac_TRx_Offset[3]*/

[PCS1900 level, ramp]

APC dc offset=80

Low APC dc offset=0

APC lowest power=12

TX power level={152,158,165,173,185,198,135,156,181,212,251,302,364,443,518,642}

profile 0 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,200,255,255,255}

profile 0 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 1 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,200,255,255,255}

profile 1 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 2 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,200,255,255,255}

profile 2 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 3 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,200,255,255,255}

profile 3 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 4 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,200,255,255,255}

profile 4 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 5 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,200,255,255,255}

profile 5 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 6 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,200,255,255,255}

profile 6 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 7 ramp up={0,0,0,0,0,0,0,8,25,52,93,155,200,255,255,255}

profile 7 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 8 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,200,255,255}

profile 8 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 9 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,200,255,255}

profile 9 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 10 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,200,255,255}

profile 10 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 11 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,200,255,255}

profile 11 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 12 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,200,255,255}

profile 12 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 13 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,200,255,255}

profile 13 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 14 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,200,255,255}

profile 14 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 15 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,200,255,255}

profile 15 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

Subband max arfcn=520,560,600,630,660,680,720,730,750,790,810}

Subband mid level=7,7,7,7,7,7,7,7,7,7,7

Subband high weight=0.98993,0.99182,0.99396,0.99695,1.00000,1.00293,1.00482,1.00696,1.00885,1.01099,1.014830

Subband low weight=0.98993,0.99182,0.99396,0.99695,1.00000,1.00293,1.00482,1.00696,1.00885,1.01099,1.014830

Battery compensate, low voltage, low temperature=1.00000

Battery compensate, low voltage, mid temperature=1.00000

Battery compensate, low voltage, high temperature=1.00000

Battery compensate, mid voltage, low temperature=1.00000

Battery compensate, mid voltage, mid temperature=1.00000

Battery compensate, mid voltage, high temperature=1.00000

Battery compensate, high voltage, low temperature=1.00000

Battery compensate, high voltage, mid temperature=1.00000

Battery compensate, high voltage, high temperature=1.00000

TX AFC DAC offset=-1/*l1d_data.c AFC_Dac_TRx_Offset[4]*/

[GSM850 level, ramp]

APC dc offset=80

Low APC dc offset=0

APC lowest power=12

TX power level={162,169,179,190,124,141,162,188,220,259,309,370,446,517,614,614}

profile 0 ramp up={0,0,0,0,0,0,0,0,67,141,190,255,255,255,255,255}

profile 0 ramp down={255,255,255,255,255,255,255,240,210,120,40,0,0,0,0,0}

profile 1 ramp up={0,0,0,0,0,0,0,0,60,80,160,240,255,255,255,255}

profile 1 ramp down={255,255,255,255,255,255,240,210,120,40,0,0,0,0,0,0}

profile 2 ramp up={0,0,0,0,0,0,0,0,60,80,160,240,255,255,255,255}

profile 2 ramp down={255,255,255,255,255,255,240,210,120,40,0,0,0,0,0,0}

profile 3 ramp up={0,0,0,0,0,0,0,0,0,0,77,204,255,255,255,255}

profile 3 ramp down={255,255,255,255,255,255,240,210,120,40,0,0,0,0,0,0}

profile 4 ramp up={0,0,0,0,0,0,0,0,0,0,61,137,240,255,255,255}

profile 4 ramp down={255,255,255,255,255,255,240,210,120,40,0,0,0,0,0,0}

profile 5 ramp up={0,0,0,0,0,0,0,0,0,0,57,160,240,255,255,255}

profile 5 ramp down={255,255,255,255,255,255,240,210,120,40,0,0,0,0,0,0}

profile 6 ramp up={0,0,0,0,0,0,0,0,0,10,49,135,240,255,255,255}

profile 6 ramp down={255,255,255,255,255,255,240,210,120,40,0,0,0,0,0,0}

profile 7 ramp up={0,0,0,0,0,0,0,0,0,0,48,160,240,255,255,255}

profile 7 ramp down={255,255,255,255,255,240,210,120,40,0,0,0,0,0,0,0}

profile 8 ramp up={0,0,0,0,0,0,0,0,0,0,50,160,240,255,255,255}

profile 8 ramp down={255,255,255,255,255,255,240,210,120,40,0,0,0,0,0,0}

profile 9 ramp up={0,0,0,0,0,0,0,0,0,0,22,70,132,240,255,255}

profile 9 ramp down={255,255,255,255,255,240,210,120,40,0,0,0,0,0,0,0}

profile 10 ramp up={0,0,0,0,0,0,0,0,0,0,0,80,160,240,255,255}

profile 10 ramp down={255,255,255,255,255,240,210,120,40,0,0,0,0,0,0,0}

profile 11 ramp up={0,0,0,0,0,0,0,0,0,0,26,80,160,240,255,255}

profile 11 ramp down={255,255,255,255,255,240,210,120,40,0,0,0,0,0,0,0}

profile 12 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 12 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 13 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 13 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 14 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,225,255,255}

profile 14 ramp down={255,255,255,255,255,197,138,78,32,10,0,0,0,0,0,0}

profile 15 ramp up={0,0,0,0,0,0,0,0,8,25,52,93,155,232,255,255}

profile 15 ramp down={255,255,255,255,197,138,78,32,10,0,0,0,0,0,0,0}

Subband max arfcn=128,160,190,220,251,-1,-1,-1,-1,-1,-1

Subband mid level=11,11,11,11,11,19,19,19,19,19,19

Subband high weight=1.00000,1.00000,1.00000,1.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.000000

Subband low weight=1.00000,1.00000,1.00000,1.00000,1.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.000000

Battery compensate, low voltage, low temperature=1.00000

Battery compensate, low voltage, mid temperature=1.00000

Battery compensate, low voltage, high temperature=1.00000

Battery compensate, mid voltage, low temperature=1.00000

Battery compensate, mid voltage, mid temperature=1.00000

Battery compensate, mid voltage, high temperature=1.00000

Battery compensate, high voltage, low temperature=1.00000

Battery compensate, high voltage, mid temperature=1.00000

Battery compensate, high voltage, high temperature=1.00000

TX AFC DAC offset=0/*l1d_data.c AFC_Dac_TRx_Offset[1]*/

[BT Info]

Crystal CAP ID=255

[ADC control]

offset=32049,27476,32049,32049,32049,32049

slope=5483,5486,5483,5483,5483,5483
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: