kwp2000_service.c 59.1 KB
Newer Older
hu's avatar
hu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
*********************************************************************
* Includes
*********************************************************************
*/
#include "kwp2000_interface.h"
#include "kwp2000_tp.h"
#include "kwp2000_service.h"

#include "Common_Interface.h"
#include "GUI.h"
/*
*********************************************************************
* structure
*********************************************************************
*/
hu's avatar
hu committed
17

hu's avatar
hu committed
18 19 20 21 22
/*
*********************************************************************
* variable
*********************************************************************
*/
hu's avatar
hu committed
23 24 25 26
unsigned char Sendseed1;
unsigned char Sendseed2;
unsigned char Sendseed3;
unsigned char Sendseed4;
hu's avatar
hu committed
27

hu's avatar
hu committed
28 29 30 31
unsigned char Recvseed1;
unsigned char Recvseed2;
unsigned char Recvseed3;
unsigned char Recvseed4;
hu's avatar
hu committed
32 33

unsigned char Seed1, Seed2, Seed3, Seed4;
hu's avatar
hu committed
34 35
unsigned char AccessMode2701KeyTimeFlag;
unsigned char AccessMode2701KeyTime;
hu's avatar
hu committed
36

37
#pragma alignvar(8)
hu's avatar
hu committed
38
_ECUStatus ECUStatusONE;
39
#pragma alignvar(8)
hu's avatar
hu committed
40
_EOL_K_LINE_SET K_Line_Set;
41 42 43 44
#pragma alignvar(8)
Kwp2000_Negative_t Kwp2000_Negative;
#pragma alignvar(8)
_K_LINE_SIGNAL_FLAG K_LINE_SIGNAL_FLAG;
hu's avatar
hu committed
45

46 47 48
#pragma ghs section bss=".myNonInitArea"
unsigned long SeedKey = 0;
unsigned long EOLSeedRandomNumber = 0x727u;
hu's avatar
hu committed
49
unsigned char DTCstatusCHGFFK_Line = 0u;
50
#pragma ghs section bss=default
hu's avatar
hu committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
/*
*********************************************************************
* function
*********************************************************************
*/

/*-------------------------------------------------------------------------
* Function Name  : kwp_NegativeResponse
* Description    : Negative Response
* Input          :
* Output         : None
* Return         : None
* onther         :
--------------------------------------------------------------------------*/
unsigned char kwp_NegativeResponse(unsigned char sId_u8, unsigned char NegRC_u8, unsigned char *blockByte)
{
    unsigned char bufPos = 0;

    (*blockByte++) = KWP_NEGATIVE_RESPONSE;
    (*blockByte++) = sId_u8;
    (*blockByte) = NegRC_u8;

    bufPos = 3;

    return (bufPos);
}
/*-------------------------------------------------------------------------
* Function Name  : kwp_EcuReset
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 11
--------------------------------------------------------------------------*/
unsigned char kwp_EcuReset(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;

hu's avatar
hu committed
89
    switch (RequestData[0]) /* subFunction */
hu's avatar
hu committed
90
    {
hu's avatar
hu committed
91
    case 1: /* hardReset */
hu's avatar
hu committed
92
        (*TxData++) = KWP2000_ECURESET_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
93
        (*TxData) = RequestData[0];
hu's avatar
hu committed
94 95
        Tx_Len = 2;
        break;
hu's avatar
hu committed
96
    case 2: /* keyOffOnReset */
hu's avatar
hu committed
97
        (*TxData++) = KWP2000_ECURESET_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
98
        (*TxData) = RequestData[0];
hu's avatar
hu committed
99 100
        Tx_Len = 2;
        break;
hu's avatar
hu committed
101
    case 3: /* softReset */
hu's avatar
hu committed
102
        (*TxData++) = KWP2000_ECURESET_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
103
        (*TxData) = RequestData[0];
hu's avatar
hu committed
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
        Tx_Len = 2;
        break;
    default: /* subFunctionNotSupported */
        Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        break;
    }
    return Tx_Len;
}

/*-------------------------------------------------------------------------
* Function Name  : kwp_TesterPresent
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 3E
--------------------------------------------------------------------------*/
unsigned char kwp_TesterPresent(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
hu's avatar
hu committed
124

hu's avatar
hu committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
    (*TxData) = KWP2000_TESTERPRESENT_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
    Tx_Len = 1;
    return Tx_Len;
}

/*-------------------------------------------------------------------------
* Function Name  : kwp_StartCommunication
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 81
--------------------------------------------------------------------------*/
unsigned char kwp_StartCommunication(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
hu's avatar
hu committed
141

hu's avatar
hu committed
142 143
    K_LINE_SIGNAL_FLAG.RecvStart = 1;

hu's avatar
hu committed
144 145
    (*TxData++) = KWP2000_STARTCOMMUNICATION_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
    (*TxData++) = KWP2000_KEYBYTE1;
hu's avatar
hu committed
146 147 148 149 150 151 152 153 154 155 156 157
    (*TxData) = KWP2000_KEYBYTE2;
    Tx_Len = 3;

    return Tx_Len;
}

/*-------------------------------------------------------------------------
* Function Name  : kwp_StartCommunication
* Description    :
* Input          :
* Output         : None
* Return         : None
hu's avatar
hu committed
158
* onther         : 82 服务,没有否定应答
hu's avatar
hu committed
159 160 161 162
--------------------------------------------------------------------------*/
unsigned char kwp_StopCommunication(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
hu's avatar
hu committed
163

hu's avatar
hu committed
164 165
    if (K_LINE_SIGNAL_FLAG.RecvStart == 1)
    {
hu's avatar
hu committed
166 167
        K_LINE_SIGNAL_FLAG.RecvStart = 0;            /*EOL诊断结束标识*/
        K_LINE_SIGNAL_FLAG.SendSeedEQUSRecvSeed = 0; /*清空密钥配对成功标识*/
hu's avatar
hu committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189

        (*TxData) = KWP2000_STOPCOMMUNICATION_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        Tx_Len = 1;
    }
    else
    {
        Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
    }

    return Tx_Len;
}
/*-------------------------------------------------------------------------
* Function Name  : kwp_readEcuIdentification
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 1A
--------------------------------------------------------------------------*/
unsigned char kwp_readEcuIdentification(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
hu's avatar
hu committed
190

hu's avatar
hu committed
191
    switch (RequestData[0]) /* subFunction */
hu's avatar
hu committed
192
    {
hu's avatar
hu committed
193
    case 0x81: /* ECUIdentificationScalingTable */
hu's avatar
hu committed
194
        (*TxData++) = KWP2000_READECUIDENTIFICATION_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
195 196 197 198
        (*TxData++) = RequestData[0];
        (*TxData++) = 0x03; /* Scaling Offset*/
        (*TxData++) = 0x91; /* 汽车制造厂编号*/
        (*TxData++) = 0x6A; /* Ascii 10 byte*/
hu's avatar
hu committed
199 200 201 202 203
        (*TxData++) = 0xFF;
        Tx_Len = 6;
        break;
    case 0x91: /* vehicleManufacturerECUHardwareNumber */
        (*TxData++) = KWP2000_READECUIDENTIFICATION_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
204
        (*TxData++) = RequestData[0]; /* ISUZU Parts No. 8979683010 */
hu's avatar
hu committed
205 206 207 208 209 210 211 212 213 214
        (*TxData++) = K_Line_Set.No_Digit1;
        (*TxData++) = K_Line_Set.No_Digit2;
        (*TxData++) = K_Line_Set.No_Digit3;
        (*TxData++) = K_Line_Set.No_Digit4;
        (*TxData++) = K_Line_Set.No_Digit5;
        (*TxData++) = K_Line_Set.No_Digit6;
        (*TxData++) = K_Line_Set.No_Digit7;
        (*TxData++) = K_Line_Set.No_Digit8;
        (*TxData++) = K_Line_Set.No_Digit9;
        (*TxData++) = K_Line_Set.No_Digit10;
hu's avatar
hu committed
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
        Tx_Len = 12;
        break;
    default: /* subFunctionNotSupported */
        Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        break;
    }
    return Tx_Len;
}

/*-------------------------------------------------------------------------
* Function Name  : kwp_writeDataByLocalIdentifier
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 3B
--------------------------------------------------------------------------*/
unsigned char kwp_writeDataByLocalIdentifier(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
    unsigned char CupFlag = 0;
hu's avatar
hu committed
236

hu's avatar
hu committed
237
    if ((K_Line_Set.KLINE == 0) || ((K_Line_Set.KLINE == 1) && (K_LINE_SIGNAL_FLAG.SendSeedEQUSRecvSeed == 1)))
hu's avatar
hu committed
238
    {
hu's avatar
hu committed
239
        switch (RequestData[0]) /* */
hu's avatar
hu committed
240
        {
hu's avatar
hu committed
241
        case 0x20: /*应对ECE R13 0:非应对、1:应对*/
hu's avatar
hu committed
242 243 244 245
            K_Line_Set.K_Line_LID20 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x20;
            Tx_Len = 2;
hu's avatar
hu committed
246
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
247
            break;
hu's avatar
hu committed
248
        case 0x21: /*EBS/ABS 0:无、1:EBS、2:ABS(CAN应对) 3:ABS (CAN非应对)*/
hu's avatar
hu committed
249 250 251 252
            K_Line_Set.K_Line_LID21 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x21;
            Tx_Len = 2;
hu's avatar
hu committed
253
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
254
            break;
hu's avatar
hu committed
255
        case 0x22: /* EVSC 0:无、1:有 */
hu's avatar
hu committed
256 257 258 259
            K_Line_Set.K_Line_LID22 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x22;
            Tx_Len = 2;
hu's avatar
hu committed
260
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
261
            break;
hu's avatar
hu committed
262
        case 0x23: /* 驻车锁定 0:无、1:有*/
hu's avatar
hu committed
263 264 265 266
            K_Line_Set.K_Line_LID23 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x23;
            Tx_Len = 2;
hu's avatar
hu committed
267
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
268
            break;
hu's avatar
hu committed
269
        case 0x24: /* HSA */
hu's avatar
hu committed
270 271 272 273
            K_Line_Set.K_Line_LID24 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x24;
            Tx_Len = 2;
hu's avatar
hu committed
274
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
275
            break;
hu's avatar
hu committed
276
        case 0x25: /* AEBS */
hu's avatar
hu committed
277 278 279 280
            K_Line_Set.K_Line_LID25 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x25;
            Tx_Len = 2;
hu's avatar
hu committed
281
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
282
            break;
hu's avatar
hu committed
283
        case 0x26: /* ACC */
hu's avatar
hu committed
284 285 286 287
            K_Line_Set.K_Line_LID26 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x26;
            Tx_Len = 2;
hu's avatar
hu committed
288
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
289
            break;
hu's avatar
hu committed
290
        case 0x27: /* LDWS */
hu's avatar
hu committed
291 292 293 294
            K_Line_Set.K_Line_LID27 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x27;
            Tx_Len = 2;
hu's avatar
hu committed
295
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
296
            break;
hu's avatar
hu committed
297
        case 0x28: /* 车辆间报警 */
hu's avatar
hu committed
298 299 300 301
            K_Line_Set.K_Line_LID28 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x28;
            Tx_Len = 2;
hu's avatar
hu committed
302
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
303
            break;
hu's avatar
hu committed
304
        case 0x29: /* 有无巡航 */
hu's avatar
hu committed
305 306 307 308
            K_Line_Set.K_Line_LID29 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x29;
            Tx_Len = 2;
hu's avatar
hu committed
309
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
310
            break;
hu's avatar
hu committed
311
        case 0x2A: /* 气悬 */
hu's avatar
hu committed
312 313 314 315
            K_Line_Set.K_Line_LID2A = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x2A;
            Tx_Len = 2;
hu's avatar
hu committed
316
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
317
            break;
hu's avatar
hu committed
318
        case 0x2B: /* ISS */
hu's avatar
hu committed
319 320 321 322
            K_Line_Set.K_Line_LID2B = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x2B;
            Tx_Len = 2;
hu's avatar
hu committed
323
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
324
            break;
hu's avatar
hu committed
325
        case 0x2C: /* 装货台工作警报蜂鸣器 */
hu's avatar
hu committed
326 327 328 329
            K_Line_Set.K_Line_LID2C = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x2C;
            Tx_Len = 2;
hu's avatar
hu committed
330
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
331
            break;
hu's avatar
hu committed
332
        case 0x2D: /* ROWS */
hu's avatar
hu committed
333 334 335 336
            K_Line_Set.K_Line_LID2D = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x2D;
            Tx_Len = 2;
hu's avatar
hu committed
337
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
338
            break;
hu's avatar
hu committed
339
        case 0x2E: /* 行车记录仪*/
hu's avatar
hu committed
340 341 342 343
            K_Line_Set.K_Line_LID2E = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x2E;
            Tx_Len = 2;
hu's avatar
hu committed
344
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
345
            break;
hu's avatar
hu committed
346
        case 0x2F: /* 车型 */
hu's avatar
hu committed
347 348 349 350
            K_Line_Set.K_Line_LID2F = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x2F;
            Tx_Len = 2;
hu's avatar
hu committed
351
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
352
            break;
hu's avatar
hu committed
353
        case 0x30: /* 缓速器 */
hu's avatar
hu committed
354 355 356 357
            K_Line_Set.K_Line_LID30 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x30;
            Tx_Len = 2;
hu's avatar
hu committed
358
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
359
            break;
hu's avatar
hu committed
360
        case 0x31: /* 地图巡航 */
hu's avatar
hu committed
361 362 363 364
            K_Line_Set.K_Line_LID31 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x31;
            Tx_Len = 2;
hu's avatar
hu committed
365
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
366
            break;
hu's avatar
hu committed
367
        case 0x32: /* 装货台种类 */
hu's avatar
hu committed
368 369 370 371
            K_Line_Set.K_Line_LID32 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x32;
            Tx_Len = 2;
hu's avatar
hu committed
372
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
373
            break;
hu's avatar
hu committed
374
        case 0x33: /* SCR?DPD */
hu's avatar
hu committed
375 376 377 378
            K_Line_Set.K_Line_LID33 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x33;
            Tx_Len = 2;
hu's avatar
hu committed
379
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
380
            break;
hu's avatar
hu committed
381
        case 0x34: /* 驻车种类 */
hu's avatar
hu committed
382 383 384 385
            K_Line_Set.K_Line_LID34 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x34;
            Tx_Len = 2;
hu's avatar
hu committed
386
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
387
            break;
hu's avatar
hu committed
388
        case 0x35: /* 气压计 */
hu's avatar
hu committed
389 390 391 392
            K_Line_Set.K_Line_LID35 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x35;
            Tx_Len = 2;
hu's avatar
hu committed
393
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
394
            break;
hu's avatar
hu committed
395
        case 0x36: /* 低气压报警 */
hu's avatar
hu committed
396 397 398 399
            K_Line_Set.K_Line_LID36 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x36;
            Tx_Len = 2;
hu's avatar
hu committed
400
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
401
            break;
hu's avatar
hu committed
402
        case 0x37: /* 超限警报 */
hu's avatar
hu committed
403 404 405 406
            K_Line_Set.K_Line_LID37 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x37;
            Tx_Len = 2;
hu's avatar
hu committed
407
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
408
            break;
hu's avatar
hu committed
409
        case 0x38: /* 速度警报 */
hu's avatar
hu committed
410 411 412 413
            K_Line_Set.K_Line_LID38 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x38;
            Tx_Len = 2;
hu's avatar
hu committed
414
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
415
            break;
hu's avatar
hu committed
416
        case 0x39: /* 可变SLD */
hu's avatar
hu committed
417 418 419 420
            K_Line_Set.K_Line_LID39 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x39;
            Tx_Len = 2;
hu's avatar
hu committed
421
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
422
            break;
hu's avatar
hu committed
423
        case 0x3A: /* OEM */
hu's avatar
hu committed
424 425 426 427
            K_Line_Set.K_Line_LID3A = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x3A;
            Tx_Len = 2;
hu's avatar
hu committed
428
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
429
            break;
hu's avatar
hu committed
430
        case 0x3B: /*预留 */
hu's avatar
hu committed
431 432 433 434
            K_Line_Set.K_Line_LID3B = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x3B;
            Tx_Len = 2;
hu's avatar
hu committed
435
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
436
            break;
hu's avatar
hu committed
437
        case 0x3C: /* 预留 */
hu's avatar
hu committed
438 439 440 441
            K_Line_Set.K_Line_LID3C = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x3C;
            Tx_Len = 2;
hu's avatar
hu committed
442
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
443
            break;
hu's avatar
hu committed
444
        case 0x3D: /* 预留 */
hu's avatar
hu committed
445 446 447 448
            K_Line_Set.K_Line_LID3D = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x3D;
            Tx_Len = 2;
hu's avatar
hu committed
449
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
450
            break;
hu's avatar
hu committed
451
        case 0x3E: /* 预留 */
hu's avatar
hu committed
452 453 454 455
            K_Line_Set.K_Line_LID3E = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x3E;
            Tx_Len = 2;
hu's avatar
hu committed
456
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
457
            break;
hu's avatar
hu committed
458
        case 0x3F: /* 预留 */
hu's avatar
hu committed
459 460 461 462
            K_Line_Set.K_Line_LID3F = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x3F;
            Tx_Len = 2;
hu's avatar
hu committed
463
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
464
            break;
hu's avatar
hu committed
465
        case 0x40: /* 发动机种类名称 */
hu's avatar
hu committed
466 467 468 469
            K_Line_Set.K_Line_LID40 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x40;
            Tx_Len = 2;
hu's avatar
hu committed
470
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
471
            break;
hu's avatar
hu committed
472
        case 0x41: /* 变速器种类&控制 */
hu's avatar
hu committed
473 474 475 476
            K_Line_Set.K_Line_LID41 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x41;
            Tx_Len = 2;
hu's avatar
hu committed
477
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
478
            break;
hu's avatar
hu committed
479
        case 0x42: /* 驻车管道 */
hu's avatar
hu committed
480 481 482 483
            K_Line_Set.K_Line_LID42 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x42;
            Tx_Len = 2;
hu's avatar
hu committed
484
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
485
            break;
hu's avatar
hu committed
486
        case 0x43: /* 车型 */
hu's avatar
hu committed
487 488 489 490
            K_Line_Set.K_Line_LID43 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x43;
            Tx_Len = 2;
hu's avatar
hu committed
491
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
492
            break;
hu's avatar
hu committed
493
        case 0x44: /* 速度警报 */
hu's avatar
hu committed
494 495 496 497
            K_Line_Set.K_Line_LID44 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x44;
            Tx_Len = 2;
hu's avatar
hu committed
498
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
499
            break;
hu's avatar
hu committed
500
        case 0x45: /* 发动机转速 */
hu's avatar
hu committed
501 502 503 504 505
            K_Line_Set.K_Line_LID45 = RequestData[2];
            User_App.User_Speed = K_Line_Set.K_Line_LID45;
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x45;
            Tx_Len = 2;
hu's avatar
hu committed
506
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
507
            break;
hu's avatar
hu committed
508
        case 0x46: /* 急加速 */
hu's avatar
hu committed
509 510 511 512 513
            K_Line_Set.K_Line_LID46 = RequestData[2];
            User_App.User_JADD = K_Line_Set.K_Line_LID46;
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x46;
            Tx_Len = 2;
hu's avatar
hu committed
514
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
515
            break;
hu's avatar
hu committed
516
        case 0x47: /* 急减速 */
hu's avatar
hu committed
517 518 519 520 521
            K_Line_Set.K_Line_LID47 = RequestData[2];
            User_App.User_JSUB = K_Line_Set.K_Line_LID47;
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x47;
            Tx_Len = 2;
hu's avatar
hu committed
522
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
523
            break;
hu's avatar
hu committed
524
        case 0x48: /* 长时间怠速 */
hu's avatar
hu committed
525 526 527 528
            K_Line_Set.K_Line_LID48 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x48;
            Tx_Len = 2;
hu's avatar
hu committed
529
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
530
            break;
hu's avatar
hu committed
531
        case 0x49: /* 辅助驻车 */
hu's avatar
hu committed
532 533 534 535
            K_Line_Set.K_Line_LID49 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x49;
            Tx_Len = 2;
hu's avatar
hu committed
536
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
537
            break;
hu's avatar
hu committed
538
        case 0x4A: /* 变速箱油 */
hu's avatar
hu committed
539 540 541 542
            K_Line_Set.K_Line_LID4A = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x4A;
            Tx_Len = 2;
hu's avatar
hu committed
543
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
544
            break;
hu's avatar
hu committed
545
        case 0x4B: /* 差速器油 */
hu's avatar
hu committed
546 547 548 549
            K_Line_Set.K_Line_LID4B = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x4B;
            Tx_Len = 2;
hu's avatar
hu committed
550
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
551
            break;
hu's avatar
hu committed
552
        case 0x4C: /* 离合器油 */
hu's avatar
hu committed
553 554 555 556
            K_Line_Set.K_Line_LID4C = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x4C;
            Tx_Len = 2;
hu's avatar
hu committed
557
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
558
            break;
hu's avatar
hu committed
559
        case 0x4D: /* 动力转向油 */
hu's avatar
hu committed
560 561 562 563
            K_Line_Set.K_Line_LID4D = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x4D;
            Tx_Len = 2;
hu's avatar
hu committed
564
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
565
            break;
hu's avatar
hu committed
566
        case 0x4E: /* 轮胎 */
hu's avatar
hu committed
567 568 569 570
            K_Line_Set.K_Line_LID4E = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x4E;
            Tx_Len = 2;
hu's avatar
hu committed
571
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
572
            break;
hu's avatar
hu committed
573
        case 0x4F: /* 机油&滤清器 */
hu's avatar
hu committed
574 575 576 577
            K_Line_Set.K_Line_LID4F = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x4F;
            Tx_Len = 2;
hu's avatar
hu committed
578
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
579
            break;
hu's avatar
hu committed
580
        case 0x50: /* 预留 */
hu's avatar
hu committed
581 582 583 584
            K_Line_Set.K_Line_LID50 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x50;
            Tx_Len = 2;
hu's avatar
hu committed
585
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
586
            break;
hu's avatar
hu committed
587
        case 0x51: /* 工作模式 */
hu's avatar
hu committed
588 589 590 591
            K_Line_Set.K_Line_LID51 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x51;
            Tx_Len = 2;
hu's avatar
hu committed
592
            //DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
593
            break;
hu's avatar
hu committed
594
        case 0x52: /* 电子部件设定 */
hu's avatar
hu committed
595 596 597 598
            K_Line_Set.K_Line_LID52 = RequestData[2];
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x52;
            Tx_Len = 2;
hu's avatar
hu committed
599
            DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
600 601
            break;

hu's avatar
hu committed
602
        case 0x91: /*  */
hu's avatar
hu committed
603 604 605 606 607 608 609 610 611 612
            K_Line_Set.No_Digit1 = RequestData[1];
            K_Line_Set.No_Digit2 = RequestData[2];
            K_Line_Set.No_Digit3 = RequestData[3];
            K_Line_Set.No_Digit4 = RequestData[4];
            K_Line_Set.No_Digit5 = RequestData[5];
            K_Line_Set.No_Digit6 = RequestData[6];
            K_Line_Set.No_Digit7 = RequestData[7];
            K_Line_Set.No_Digit8 = RequestData[8];
            K_Line_Set.No_Digit9 = RequestData[9];
            K_Line_Set.No_Digit10 = RequestData[10];
hu's avatar
hu committed
613

hu's avatar
hu committed
614
            /*写EEP*/
hu's avatar
hu committed
615
            DTCstatusCHGFFK_Line = 1;   //----ECU ID_ECU件号 eep
hu's avatar
hu committed
616 617 618 619 620

            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = RequestData[0];
            Tx_Len = 2;
            break;
hu's avatar
hu committed
621
        case 0xA0: /*  */
hu's avatar
hu committed
622
            K_Line_Set.TesterECU = RequestData[2];
hu's avatar
hu committed
623

hu's avatar
hu committed
624
            if (K_Line_Set.METERCOUNT < 0xFF)
hu's avatar
hu committed
625
            {
hu's avatar
hu committed
626
                K_Line_Set.METERCOUNT++; /*修正率次数增加*/
hu's avatar
hu committed
627 628 629
            }
            else
            {
hu's avatar
hu committed
630
                K_Line_Set.METERCOUNT = 0xFF; /*修正率次数增加*/
hu's avatar
hu committed
631 632
            }

hu's avatar
hu committed
633 634
            DTCstatusCHGFFK_Line = 1;

hu's avatar
hu committed
635 636 637 638
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0xA0;
            Tx_Len = 2;
            break;
hu's avatar
hu committed
639
        case 0xA3: /*  */
hu's avatar
hu committed
640
            K_Line_Set.TesterECUCAN = RequestData[2];
hu's avatar
hu committed
641

hu's avatar
hu committed
642
            if (K_Line_Set.METERCOUNT < 0xFF)
hu's avatar
hu committed
643
            {
hu's avatar
hu committed
644
                K_Line_Set.METERCOUNT++; /*修正率次数增加*/
hu's avatar
hu committed
645 646 647
            }
            else
            {
hu's avatar
hu committed
648
                K_Line_Set.METERCOUNT = 0xFF; /*修正率次数增加*/
hu's avatar
hu committed
649 650
            }

hu's avatar
hu committed
651 652
            DTCstatusCHGFFK_Line = 1;

hu's avatar
hu committed
653 654 655 656 657 658 659 660 661 662 663 664
            (*TxData++) = KWP2000_WRITEDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0xA3;
            Tx_Len = 2;
            break;
        default: /* subFunctionNotSupported */
            Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
            break;
        }
        return Tx_Len;
    }
    else
    {
hu's avatar
hu committed
665
        if ((K_Line_Set.KLINE == 1u) && (K_LINE_SIGNAL_FLAG.SendSeedEQUSRecvSeed == 0u))
hu's avatar
hu committed
666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
        {
            if (((RequestData[0] >= 0x20) && (RequestData[0] <= 0x52)) || (RequestData[0] == 0x91) || (RequestData[0] == 0xA0) || (RequestData[0] == 0xA3))
                Kwp2000_Negative.ResponseCode = KWP2000_securityAccessDenied;
            else
                Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        }
        else
            Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        return Tx_Len;
    }
}
/*-------------------------------------------------------------------------
* Function Name  : kwp_readDataByLocalIdentifier
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 21
--------------------------------------------------------------------------*/
unsigned char kwp_readDataByLocalIdentifier(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
    unsigned int ECUStatusCup = 0;
hu's avatar
hu committed
689

hu's avatar
hu committed
690
    switch (RequestData[0]) /* subFunction */
hu's avatar
hu committed
691
    {
hu's avatar
hu committed
692
    case 0x20: /* 应对ECE R13 */
hu's avatar
hu committed
693 694 695
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x20;
        (*TxData++) = 0x00;
hu's avatar
hu committed
696
        (*TxData++) = K_Line_Set.K_Line_LID20;
hu's avatar
hu committed
697 698
        Tx_Len = 4;
        break;
hu's avatar
hu committed
699
    case 0x21: /* EBS/ABS */
hu's avatar
hu committed
700 701 702
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x21;
        (*TxData++) = 0x00;
hu's avatar
hu committed
703
        (*TxData++) = K_Line_Set.K_Line_LID21;
hu's avatar
hu committed
704 705
        Tx_Len = 4;
        break;
hu's avatar
hu committed
706
    case 0x22: /* EVSC */
hu's avatar
hu committed
707 708 709
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x22;
        (*TxData++) = 0x00;
hu's avatar
hu committed
710
        (*TxData++) = K_Line_Set.K_Line_LID22;
hu's avatar
hu committed
711 712
        Tx_Len = 4;
        break;
hu's avatar
hu committed
713
    case 0x23: /* 驻车锁定 */
hu's avatar
hu committed
714 715 716
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x23;
        (*TxData++) = 0x00;
hu's avatar
hu committed
717
        (*TxData++) = K_Line_Set.K_Line_LID23;
hu's avatar
hu committed
718 719
        Tx_Len = 4;
        break;
hu's avatar
hu committed
720
    case 0x24: /* HSA */
hu's avatar
hu committed
721 722 723
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x24;
        (*TxData++) = 0x00;
hu's avatar
hu committed
724
        (*TxData++) = K_Line_Set.K_Line_LID24;
hu's avatar
hu committed
725 726
        Tx_Len = 4;
        break;
hu's avatar
hu committed
727
    case 0x25: /* AEBS */
hu's avatar
hu committed
728 729 730
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x25;
        (*TxData++) = 0x00;
hu's avatar
hu committed
731
        (*TxData++) = K_Line_Set.K_Line_LID25;
hu's avatar
hu committed
732 733
        Tx_Len = 4;
        break;
hu's avatar
hu committed
734
    case 0x26: /* ACC */
hu's avatar
hu committed
735 736 737
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x26;
        (*TxData++) = 0x00;
hu's avatar
hu committed
738
        (*TxData++) = K_Line_Set.K_Line_LID26;
hu's avatar
hu committed
739 740
        Tx_Len = 4;
        break;
hu's avatar
hu committed
741
    case 0x27: /* LDWS */
hu's avatar
hu committed
742 743 744
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x27;
        (*TxData++) = 0x00;
hu's avatar
hu committed
745
        (*TxData++) = K_Line_Set.K_Line_LID27;
hu's avatar
hu committed
746 747
        Tx_Len = 4;
        break;
hu's avatar
hu committed
748
    case 0x28: /* 车辆间报警 */
hu's avatar
hu committed
749 750 751
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x28;
        (*TxData++) = 0x00;
hu's avatar
hu committed
752
        (*TxData++) = K_Line_Set.K_Line_LID28;
hu's avatar
hu committed
753 754
        Tx_Len = 4;
        break;
hu's avatar
hu committed
755
    case 0x29: /* 有无巡航 */
hu's avatar
hu committed
756 757 758
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x29;
        (*TxData++) = 0x00;
hu's avatar
hu committed
759
        (*TxData++) = K_Line_Set.K_Line_LID29;
hu's avatar
hu committed
760 761
        Tx_Len = 4;
        break;
hu's avatar
hu committed
762
    case 0x2A: /* 气悬 */
hu's avatar
hu committed
763 764 765
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x2A;
        (*TxData++) = 0x00;
hu's avatar
hu committed
766
        (*TxData++) = K_Line_Set.K_Line_LID2A;
hu's avatar
hu committed
767 768
        Tx_Len = 4;
        break;
hu's avatar
hu committed
769
    case 0x2B: /* ISS */
hu's avatar
hu committed
770 771 772
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x2B;
        (*TxData++) = 0x00;
hu's avatar
hu committed
773
        (*TxData++) = K_Line_Set.K_Line_LID2B;
hu's avatar
hu committed
774 775
        Tx_Len = 4;
        break;
hu's avatar
hu committed
776
    case 0x2C: /* װ装货台工作警报蜂鸣器 */
hu's avatar
hu committed
777 778 779
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x2C;
        (*TxData++) = 0x00;
hu's avatar
hu committed
780
        (*TxData++) = K_Line_Set.K_Line_LID2C;
hu's avatar
hu committed
781 782
        Tx_Len = 4;
        break;
hu's avatar
hu committed
783
    case 0x2D: /* ROWS */
hu's avatar
hu committed
784 785 786
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x2D;
        (*TxData++) = 0x00;
hu's avatar
hu committed
787
        (*TxData++) = K_Line_Set.K_Line_LID2D;
hu's avatar
hu committed
788 789
        Tx_Len = 4;
        break;
hu's avatar
hu committed
790
    case 0x2E: /* 行车记录仪 */
hu's avatar
hu committed
791 792 793
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x2E;
        (*TxData++) = 0x00;
hu's avatar
hu committed
794
        (*TxData++) = K_Line_Set.K_Line_LID2E;
hu's avatar
hu committed
795 796
        Tx_Len = 4;
        break;
hu's avatar
hu committed
797
    case 0x2F: /* 车型 */
hu's avatar
hu committed
798 799 800
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x2F;
        (*TxData++) = 0x00;
hu's avatar
hu committed
801
        (*TxData++) = K_Line_Set.K_Line_LID2F;
hu's avatar
hu committed
802 803
        Tx_Len = 4;
        break;
hu's avatar
hu committed
804
    case 0x30: /* 缓速器 */
hu's avatar
hu committed
805 806 807
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x30;
        (*TxData++) = 0x00;
hu's avatar
hu committed
808
        (*TxData++) = K_Line_Set.K_Line_LID30;
hu's avatar
hu committed
809 810
        Tx_Len = 4;
        break;
hu's avatar
hu committed
811
    case 0x31: /* 地图巡航 */
hu's avatar
hu committed
812 813 814
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x31;
        (*TxData++) = 0x00;
hu's avatar
hu committed
815
        (*TxData++) = K_Line_Set.K_Line_LID31;
hu's avatar
hu committed
816 817
        Tx_Len = 4;
        break;
hu's avatar
hu committed
818
    case 0x32: /* 装货台种类 */
hu's avatar
hu committed
819 820 821
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x32;
        (*TxData++) = 0x00;
hu's avatar
hu committed
822
        (*TxData++) = K_Line_Set.K_Line_LID32;
hu's avatar
hu committed
823 824
        Tx_Len = 4;
        break;
hu's avatar
hu committed
825
    case 0x33: /*  SCR?DPD */
hu's avatar
hu committed
826 827 828
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x33;
        (*TxData++) = 0x00;
hu's avatar
hu committed
829
        (*TxData++) = K_Line_Set.K_Line_LID33;
hu's avatar
hu committed
830 831
        Tx_Len = 4;
        break;
hu's avatar
hu committed
832
    case 0x34: /* 驻车种类 */
hu's avatar
hu committed
833 834 835
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x34;
        (*TxData++) = 0x00;
hu's avatar
hu committed
836
        (*TxData++) = K_Line_Set.K_Line_LID34;
hu's avatar
hu committed
837 838
        Tx_Len = 4;
        break;
hu's avatar
hu committed
839
    case 0x35: /* 气压计 */
hu's avatar
hu committed
840 841 842
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x35;
        (*TxData++) = 0x00;
hu's avatar
hu committed
843
        (*TxData++) = K_Line_Set.K_Line_LID35;
hu's avatar
hu committed
844 845
        Tx_Len = 4;
        break;
hu's avatar
hu committed
846
    case 0x36: /* 低压警报 */
hu's avatar
hu committed
847 848 849
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x36;
        (*TxData++) = 0x00;
hu's avatar
hu committed
850
        (*TxData++) = K_Line_Set.K_Line_LID36;
hu's avatar
hu committed
851 852
        Tx_Len = 4;
        break;
hu's avatar
hu committed
853
    case 0x37: /* 超限警报 */
hu's avatar
hu committed
854 855 856
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x37;
        (*TxData++) = 0x00;
hu's avatar
hu committed
857
        (*TxData++) = K_Line_Set.K_Line_LID37;
hu's avatar
hu committed
858 859
        Tx_Len = 4;
        break;
hu's avatar
hu committed
860
    case 0x38: /* 速度警报 */
hu's avatar
hu committed
861 862 863
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x38;
        (*TxData++) = 0x00;
hu's avatar
hu committed
864
        (*TxData++) = K_Line_Set.K_Line_LID38;
hu's avatar
hu committed
865 866
        Tx_Len = 4;
        break;
hu's avatar
hu committed
867
    case 0x39: /* 可变SLD */
hu's avatar
hu committed
868 869 870
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x39;
        (*TxData++) = 0x00;
hu's avatar
hu committed
871
        (*TxData++) = K_Line_Set.K_Line_LID39;
hu's avatar
hu committed
872 873
        Tx_Len = 4;
        break;
hu's avatar
hu committed
874
    case 0x3A: /* OEM */
hu's avatar
hu committed
875 876 877
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x3A;
        (*TxData++) = 0x00;
hu's avatar
hu committed
878
        (*TxData++) = K_Line_Set.K_Line_LID3A;
hu's avatar
hu committed
879 880
        Tx_Len = 4;
        break;
hu's avatar
hu committed
881
    case 0x3B: /*  */
hu's avatar
hu committed
882 883 884
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x3B;
        (*TxData++) = 0x00;
hu's avatar
hu committed
885
        (*TxData++) = K_Line_Set.K_Line_LID3B;
hu's avatar
hu committed
886 887
        Tx_Len = 4;
        break;
hu's avatar
hu committed
888
    case 0x3C: /*  */
hu's avatar
hu committed
889 890 891
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x3C;
        (*TxData++) = 0x00;
hu's avatar
hu committed
892
        (*TxData++) = K_Line_Set.K_Line_LID3C;
hu's avatar
hu committed
893 894
        Tx_Len = 4;
        break;
hu's avatar
hu committed
895
    case 0x3D: /*  */
hu's avatar
hu committed
896 897 898
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x3D;
        (*TxData++) = 0x00;
hu's avatar
hu committed
899
        (*TxData++) = K_Line_Set.K_Line_LID3D;
hu's avatar
hu committed
900 901
        Tx_Len = 4;
        break;
hu's avatar
hu committed
902
    case 0x3E: /*  */
hu's avatar
hu committed
903 904 905
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x3E;
        (*TxData++) = 0x00;
hu's avatar
hu committed
906
        (*TxData++) = K_Line_Set.K_Line_LID3E;
hu's avatar
hu committed
907 908
        Tx_Len = 4;
        break;
hu's avatar
hu committed
909
    case 0x3F: /*  */
hu's avatar
hu committed
910 911 912
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x3F;
        (*TxData++) = 0x00;
hu's avatar
hu committed
913
        (*TxData++) = K_Line_Set.K_Line_LID3F;
hu's avatar
hu committed
914 915
        Tx_Len = 4;
        break;
hu's avatar
hu committed
916
    case 0x40: /* 发动机种类 */
hu's avatar
hu committed
917 918 919
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x40;
        (*TxData++) = 0x00;
hu's avatar
hu committed
920
        (*TxData++) = K_Line_Set.K_Line_LID40;
hu's avatar
hu committed
921 922
        Tx_Len = 4;
        break;
hu's avatar
hu committed
923
    case 0x41: /* 变速器种类&控制 */
hu's avatar
hu committed
924 925 926
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x41;
        (*TxData++) = 0x00;
hu's avatar
hu committed
927
        (*TxData++) = K_Line_Set.K_Line_LID41;
hu's avatar
hu committed
928 929
        Tx_Len = 4;
        break;
hu's avatar
hu committed
930
    case 0x42: /* 5.2.14.1.4.  驻车管道*/
hu's avatar
hu committed
931 932 933
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x42;
        (*TxData++) = 0x00;
hu's avatar
hu committed
934
        (*TxData++) = K_Line_Set.K_Line_LID42;
hu's avatar
hu committed
935 936
        Tx_Len = 4;
        break;
hu's avatar
hu committed
937
    case 0x43: /* 5.2.14.1.5.  车型 */
hu's avatar
hu committed
938 939 940
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x43;
        (*TxData++) = 0x00;
hu's avatar
hu committed
941
        (*TxData++) = K_Line_Set.K_Line_LID43;
hu's avatar
hu committed
942 943
        Tx_Len = 4;
        break;
hu's avatar
hu committed
944
    case 0x44: /* 速度警报 */
hu's avatar
hu committed
945 946 947
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x44;
        (*TxData++) = 0x00;
hu's avatar
hu committed
948
        (*TxData++) = K_Line_Set.K_Line_LID44;
hu's avatar
hu committed
949 950
        Tx_Len = 4;
        break;
hu's avatar
hu committed
951
    case 0x45: /* 发动机转速 */
hu's avatar
hu committed
952 953 954
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x45;
        (*TxData++) = 0x00;
hu's avatar
hu committed
955
        (*TxData++) = K_Line_Set.K_Line_LID45;
hu's avatar
hu committed
956 957
        Tx_Len = 4;
        break;
hu's avatar
hu committed
958
    case 0x46: /* 急加速 */
hu's avatar
hu committed
959 960 961
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x46;
        (*TxData++) = 0x00;
hu's avatar
hu committed
962
        (*TxData++) = K_Line_Set.K_Line_LID46;
hu's avatar
hu committed
963 964
        Tx_Len = 4;
        break;
hu's avatar
hu committed
965
    case 0x47: /* 急减速 */
hu's avatar
hu committed
966 967 968
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x47;
        (*TxData++) = 0x00;
hu's avatar
hu committed
969
        (*TxData++) = K_Line_Set.K_Line_LID47;
hu's avatar
hu committed
970 971
        Tx_Len = 4;
        break;
hu's avatar
hu committed
972
    case 0x48: /* 长时间怠速 */
hu's avatar
hu committed
973 974 975
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x48;
        (*TxData++) = 0x00;
hu's avatar
hu committed
976
        (*TxData++) = K_Line_Set.K_Line_LID48;
hu's avatar
hu committed
977 978
        Tx_Len = 4;
        break;
hu's avatar
hu committed
979
    case 0x49: /* 辅助驻车 */
hu's avatar
hu committed
980 981 982
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x49;
        (*TxData++) = 0x00;
hu's avatar
hu committed
983
        (*TxData++) = K_Line_Set.K_Line_LID49;
hu's avatar
hu committed
984 985
        Tx_Len = 4;
        break;
hu's avatar
hu committed
986
    case 0x4A: /* 变速箱油 */
hu's avatar
hu committed
987 988 989
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x4A;
        (*TxData++) = 0x00;
hu's avatar
hu committed
990
        (*TxData++) = K_Line_Set.K_Line_LID4A;
hu's avatar
hu committed
991 992
        Tx_Len = 4;
        break;
hu's avatar
hu committed
993
    case 0x4B: /* 差速器油 */
hu's avatar
hu committed
994 995 996
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x4B;
        (*TxData++) = 0x00;
hu's avatar
hu committed
997
        (*TxData++) = K_Line_Set.K_Line_LID4B;
hu's avatar
hu committed
998 999
        Tx_Len = 4;
        break;
hu's avatar
hu committed
1000
    case 0x4C: /* 离合器油 */
hu's avatar
hu committed
1001 1002 1003
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x4C;
        (*TxData++) = 0x00;
hu's avatar
hu committed
1004
        (*TxData++) = K_Line_Set.K_Line_LID4C;
hu's avatar
hu committed
1005 1006
        Tx_Len = 4;
        break;
hu's avatar
hu committed
1007
    case 0x4D: /* 动力转向油 */
hu's avatar
hu committed
1008 1009 1010
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x4D;
        (*TxData++) = 0x00;
hu's avatar
hu committed
1011
        (*TxData++) = K_Line_Set.K_Line_LID4D;
hu's avatar
hu committed
1012 1013
        Tx_Len = 4;
        break;
hu's avatar
hu committed
1014
    case 0x4E: /* 轮胎 */
hu's avatar
hu committed
1015 1016 1017
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x4E;
        (*TxData++) = 0x00;
hu's avatar
hu committed
1018
        (*TxData++) = K_Line_Set.K_Line_LID4E;
hu's avatar
hu committed
1019 1020
        Tx_Len = 4;
        break;
hu's avatar
hu committed
1021
    case 0x4F: /* 机油&滤清器 */
hu's avatar
hu committed
1022 1023 1024
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x4F;
        (*TxData++) = 0x00;
hu's avatar
hu committed
1025
        (*TxData++) = K_Line_Set.K_Line_LID4F;
hu's avatar
hu committed
1026 1027
        Tx_Len = 4;
        break;
hu's avatar
hu committed
1028
    case 0x50: /* 预留 */
hu's avatar
hu committed
1029 1030 1031
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x50;
        (*TxData++) = 0x00;
hu's avatar
hu committed
1032
        (*TxData++) = K_Line_Set.K_Line_LID50;
hu's avatar
hu committed
1033 1034
        Tx_Len = 4;
        break;
hu's avatar
hu committed
1035
    case 0x51: /* 5.2.14.1.8.  工作模式 */
hu's avatar
hu committed
1036 1037 1038
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x51;
        (*TxData++) = 0x00;
hu's avatar
hu committed
1039
        (*TxData++) = K_Line_Set.K_Line_LID51;
hu's avatar
hu committed
1040 1041
        Tx_Len = 4;
        break;
hu's avatar
hu committed
1042
    case 0x52: /* 5.2.14.1.9.  电子部件设定 */
hu's avatar
hu committed
1043 1044 1045
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x52;
        (*TxData++) = 0x00;
hu's avatar
hu committed
1046
        (*TxData++) = K_Line_Set.K_Line_LID52;
hu's avatar
hu committed
1047 1048 1049
        Tx_Len = 4;
        break;

hu's avatar
hu committed
1050
    case 0xA0: /*  */
hu's avatar
hu committed
1051 1052 1053
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0xA0;
        (*TxData++) = 0x00;
hu's avatar
hu committed
1054
        (*TxData++) = K_Line_Set.TesterECU;
hu's avatar
hu committed
1055 1056
        Tx_Len = 4;
        break;
hu's avatar
hu committed
1057
    case 0xA3: /*  */
hu's avatar
hu committed
1058 1059 1060
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0xA3;
        (*TxData++) = 0x00;
hu's avatar
hu committed
1061
        (*TxData++) = K_Line_Set.TesterECUCAN;
hu's avatar
hu committed
1062 1063
        Tx_Len = 4;
        break;
hu's avatar
hu committed
1064
    case 0xA1: /*  */
hu's avatar
hu committed
1065
    /*
hu's avatar
hu committed
1066
    K_Line_Set.ECUStatus1 = ECUStatusONE.Data[0];
hu's avatar
hu committed
1067 1068

    if (DataVSpeedDisp <= 1275)
hu's avatar
hu committed
1069
        K_Line_Set.ECUStatus2 = DataVSpeedDisp / 5 ;
hu's avatar
hu committed
1070 1071

    ECUStatusCup = ECUSTATUST_F ;
hu's avatar
hu committed
1072 1073
    K_Line_Set.ECUStatus3 = (unsigned char)(ECUStatusCup & 0xFF);
    K_Line_Set.ECUStatus4 = (unsigned char)((ECUStatusCup >> 8) & 0xFF);
hu's avatar
hu committed
1074

hu's avatar
hu committed
1075
    K_Line_Set.ECUStatus5 = 0x80;
hu's avatar
hu committed
1076 1077 1078

    (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
    (*TxData++) = 0xA1;
hu's avatar
hu committed
1079 1080 1081 1082 1083
    (*TxData++) = K_Line_Set.ECUStatus1;
    (*TxData++) = K_Line_Set.ECUStatus2;
    (*TxData++) = K_Line_Set.ECUStatus3;
    (*TxData++) = K_Line_Set.ECUStatus4;
    (*TxData++) = K_Line_Set.ECUStatus5;
hu's avatar
hu committed
1084 1085 1086
    Tx_Len = 7;
    break;
    */
hu's avatar
hu committed
1087
    case 0xA2: /*  */
hu's avatar
hu committed
1088 1089
        (*TxData++) = KWP2000_READDATABYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0xA2;
hu's avatar
hu committed
1090
        (*TxData++) = K_Line_Set.METERCOUNT; /*修正率替换次数*/
hu's avatar
hu committed
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
        Tx_Len = 3;
        break;
    default: /* subFunctionNotSupported */
        Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        break;
    }
    return Tx_Len;
}
/*-------------------------------------------------------------------------
* Function Name  : kwp_readDataByCommonIdentifier
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 22
--------------------------------------------------------------------------*/
unsigned char kwp_readDataByCommonIdentifier(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
hu's avatar
hu committed
1110

hu's avatar
hu committed
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
    return Tx_Len;
}
/*-------------------------------------------------------------------------
* Function Name  : kwp_readDataAccessMode
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 27
--------------------------------------------------------------------------*/
unsigned char kwp_readDataAccessMode(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;

hu's avatar
hu committed
1125
    switch (RequestData[0]) /* subFunction */
hu's avatar
hu committed
1126
    {
hu's avatar
hu committed
1127
    case 0x01: /*  */
hu's avatar
hu committed
1128
        if (K_Line_Set.KLINE == 1)/*是否锁定标记*/
hu's avatar
hu committed
1129
        {
hu's avatar
hu committed
1130
            /*密钥随机数生成*/
1131 1132
            EOLSeedRandomNumber = (unsigned long)(EOLSeedRandomNumber * 1103515245ul + 12345u);
            SeedKey = (unsigned long)EOLSeedRandomNumber;
hu's avatar
hu committed
1133 1134
            //SeedKey = SeedKey << 16;
            //SeedKey |= (unsigned long)(~EOLSeedRandomNumber);
hu's avatar
hu committed
1135 1136 1137 1138 1139

            Seed1 = (unsigned char)(SeedKey >> 24);
            Seed2 = (unsigned char)(SeedKey >> 16);
            Seed3 = (unsigned char)(SeedKey >> 8);
            Seed4 = (unsigned char)(SeedKey);
hu's avatar
hu committed
1140 1141 1142

            /*计算密钥等待应答*/
            App_Uds_Calc_Key();
hu's avatar
hu committed
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160

            K_LINE_SIGNAL_FLAG.AccessMode2701 = 1;
            AccessMode2701KeyTime = 0;
            AccessMode2701KeyTimeFlag = 1;

            (*TxData++) = KWP2000_SECURITYACCESS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x01;
            (*TxData++) = Seed1;
            (*TxData++) = Seed2;
            (*TxData++) = Seed3;
            (*TxData++) = Seed4;
            Tx_Len = 6;
        }
        else
        {
            Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        }
        break;
hu's avatar
hu committed
1161 1162 1163 1164 1165
    case 0x02: /*  */
        Recvseed1 = RequestData[1];
        Recvseed2 = RequestData[2];
        Recvseed3 = RequestData[3];
        Recvseed4 = RequestData[4];
hu's avatar
hu committed
1166
        if (
hu's avatar
hu committed
1167 1168 1169 1170 1171
            (Sendseed1 == Recvseed1) &&
            (Sendseed2 == Recvseed2) &&
            (Sendseed3 == Recvseed3) &&
            (Sendseed4 == Recvseed4) &&
            (AccessMode2701KeyTimeFlag == 1))
hu's avatar
hu committed
1172
        {
hu's avatar
hu committed
1173
            K_LINE_SIGNAL_FLAG.AccessMode2701 = 0;
hu's avatar
hu committed
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
            AccessMode2701KeyTimeFlag = 1;

            K_LINE_SIGNAL_FLAG.SendSeedEQUSRecvSeed = 1;
            (*TxData++) = KWP2000_SECURITYACCESS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0x02;
            Tx_Len = 2;
        }
        else
        {
            K_LINE_SIGNAL_FLAG.SendSeedEQUSRecvSeed = 0;
            Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        }
        break;
    default: /* subFunctionNotSupported */
        Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        break;
    }

    return Tx_Len;
}
/*-------------------------------------------------------------------------
* Function Name  : kwp_readDataAccessMode
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 31
--------------------------------------------------------------------------*/
unsigned char kwp_StartroutInebykocalIdentifier(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
hu's avatar
hu committed
1205

hu's avatar
hu committed
1206
    switch (RequestData[0]) /*  */
hu's avatar
hu committed
1207
    {
hu's avatar
hu committed
1208
    case 0x08: /*  */
hu's avatar
hu committed
1209 1210
        K_LINE_SIGNAL_FLAG.S_Regist = 1;
        K_Line_Set.KLINE = 1 ;
hu's avatar
hu committed
1211
        /*写EEP*/
hu's avatar
hu committed
1212
        DTCstatusCHGFFK_Line = 1;
hu's avatar
hu committed
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
        (*TxData++) = KWP2000_STARTROUTINEBYLOCALIDENTIFIER_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
        (*TxData++) = 0x08;
        Tx_Len = 2;
        break;
    default: /*  */
        Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        break;
    }
    return Tx_Len;
}
/*-------------------------------------------------------------------------
* Function Name  : kwp_readDataStatusofDTC
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 18
--------------------------------------------------------------------------*/
unsigned char kwp_readDataStatusofDTC(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
hu's avatar
hu committed
1234

hu's avatar
hu committed
1235
    switch (RequestData[0]) /* subFunction */
hu's avatar
hu committed
1236
    {
hu's avatar
hu committed
1237
    case 0x00: /*  */
hu's avatar
hu committed
1238 1239 1240 1241
    /*
    if ((RequestData[1] == 0xFF)&&(RequestData[2] == 0x00))
    {
      (*TxData++) = KWP2000_READDIAGNOSTICTROUBLECODESBYSTATUS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
1242
      (*TxData++) = K_Line_Set.NoOfDTCFF00;
hu's avatar
hu committed
1243 1244 1245 1246 1247
      Tx_Len = 2;
    }
    else if ((RequestData[1] == 0x80)&&(RequestData[2] == 0x00))
    {
      (*TxData++) = KWP2000_READDIAGNOSTICTROUBLECODESBYSTATUS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
1248
      (*TxData++) = K_Line_Set.NoOfDTC8000;
hu's avatar
hu committed
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
      Tx_Len = 2;
    }
    else
    {
      Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
    }
    break;
    */
    case 0x01:
    /*
    if ((RequestData[1] == 0xFF)&&(RequestData[2] == 0x00))
    {
      (*TxData++) = KWP2000_READDIAGNOSTICTROUBLECODESBYSTATUS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
1262
      (*TxData++) = K_Line_Set.NoOfDTCFF01;
hu's avatar
hu committed
1263 1264 1265 1266 1267
      Tx_Len = 2;
    }
    else if ((RequestData[1] == 0x80)&&(RequestData[2] == 0x00))
    {
      (*TxData++) = KWP2000_READDIAGNOSTICTROUBLECODESBYSTATUS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
1268
      (*TxData++) = K_Line_Set.NoOfDTC8001;
hu's avatar
hu committed
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
      Tx_Len = 2;
    }
    else
    {
      Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
    }
    break;
    */
    case 0x02:
    /*
    if ((RequestData[1] == 0xFF)&&(RequestData[2] == 0x00))
    {
      (*TxData++) = KWP2000_READDIAGNOSTICTROUBLECODESBYSTATUS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
1282
      (*TxData++) = K_Line_Set.NoOfDTCFF02;
hu's avatar
hu committed
1283 1284 1285 1286 1287
      Tx_Len = 2;
    }
    else if ((RequestData[1] == 0x80)&&(RequestData[2] == 0x00))
    {
      (*TxData++) = KWP2000_READDIAGNOSTICTROUBLECODESBYSTATUS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
1288
      (*TxData++) = K_Line_Set.NoOfDTC8002;
hu's avatar
hu committed
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
      Tx_Len = 2;
    }
    else
    {
      Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
    }
    break;
    */
    case 0x03:
        if ((RequestData[1] == 0xFF) && (RequestData[2] == 0x00))
        {
            (*TxData++) = KWP2000_READDIAGNOSTICTROUBLECODESBYSTATUS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
1301
            (*TxData++) = K_Line_Set.NoOfDTCFF00;
hu's avatar
hu committed
1302 1303 1304 1305 1306
            Tx_Len = 2;
        }
        else if ((RequestData[1] == 0x80) && (RequestData[2] == 0x00))
        {
            (*TxData++) = KWP2000_READDIAGNOSTICTROUBLECODESBYSTATUS_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
hu's avatar
hu committed
1307
            (*TxData++) = K_Line_Set.NoOfDTC8000;
hu's avatar
hu committed
1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
            Tx_Len = 2;
        }
        else
        {
            Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        }
        break;
    default: /* subFunctionNotSupported */
        Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        break;
    }
    return Tx_Len;
}
/*-------------------------------------------------------------------------
* Function Name  : kwp_ClearDiagnosticInformation
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         : 14
--------------------------------------------------------------------------*/
unsigned char kwp_ClearDiagnosticInformation(unsigned char *TxData, unsigned char *RequestData)
{
    unsigned char Tx_Len = 0;
hu's avatar
hu committed
1332

hu's avatar
hu committed
1333
    switch (RequestData[0]) /* subFunction */
hu's avatar
hu committed
1334
    {
hu's avatar
hu committed
1335
    case 0xFF: /*  */
hu's avatar
hu committed
1336 1337 1338 1339 1340
        if (RequestData[1] == 0x00)
        {
            (*TxData++) = KWP2000_CLEARDIAGNOSTICINFORMATION_REQUEST + KWP2000_POSITIVE_RESPONSE_OFFSET;
            (*TxData++) = 0xFF;
            (*TxData++) = 0x00;
hu's avatar
hu committed
1341
            // K_Line_Set.NoOfDTCFF00 == 0x00;
hu's avatar
hu committed
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
            Tx_Len = 3;
        }
        else
        {
            Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        }
        break;
    default: /* subFunctionNotSupported */
        Kwp2000_Negative.ResponseCode = KWP2000_subFunctionNotSupported;
        break;
    }
    return Tx_Len;
}
/*-------------------------------------------------------------------------
* Function Name  : App_Uds_Calc_Key
* Description    :
* Input          :
* Output         : None
* Return         : None
* onther         :
--------------------------------------------------------------------------*/
void App_Uds_Calc_Key(void)
{
hu's avatar
hu committed
1365 1366 1367 1368
    unsigned char CupChar1 = 0;
    unsigned char CupChar2 = 0;
    unsigned char CupChar3 = 0;
    unsigned char CupChar4 = 0;
hu's avatar
hu committed
1369

hu's avatar
hu committed
1370 1371 1372 1373
    unsigned char CupChar5 = 0;
    unsigned char CupChar6 = 0;
    unsigned char CupChar7 = 0;
    unsigned char CupChar8 = 0;
hu's avatar
hu committed
1374

hu's avatar
hu committed
1375
    unsigned char CupChar9 = 0;
hu's avatar
hu committed
1376 1377 1378 1379
    unsigned char CupChar10 = 0;
    unsigned char CupChar11 = 0;
    unsigned char CupChar12 = 0;

hu's avatar
hu committed
1380 1381 1382 1383
    CupChar1 = Cup_Key(Seed1, 1, Seed1);
    CupChar2 = Cup_Key(Seed2, 2, Seed2);
    CupChar3 = Cup_Key(Seed3, 3, Seed3);
    CupChar4 = Cup_Key(Seed4, 4, Seed4);
hu's avatar
hu committed
1384

hu's avatar
hu committed
1385 1386 1387 1388
    CupChar5 = Cup_Key(CupChar4, 1, Seed1);
    CupChar6 = Cup_Key(CupChar3, 2, Seed2);
    CupChar7 = Cup_Key(CupChar2, 3, Seed3);
    CupChar8 = Cup_Key(CupChar1, 4, Seed4);
hu's avatar
hu committed
1389

hu's avatar
hu committed
1390 1391 1392 1393
    CupChar9 = Cup_Key(CupChar8, 1, Seed1);
    CupChar10 = Cup_Key(CupChar7, 2, Seed2);
    CupChar11 = Cup_Key(CupChar6, 3, Seed3);
    CupChar12 = Cup_Key(CupChar5, 4, Seed4);
hu's avatar
hu committed
1394

hu's avatar
hu committed
1395 1396 1397 1398
    Sendseed4 = Cup_Key(CupChar12, 1, Seed1);
    Sendseed3 = Cup_Key(CupChar11, 2, Seed2);
    Sendseed2 = Cup_Key(CupChar10, 3, Seed3);
    Sendseed1 = Cup_Key(CupChar9, 4, Seed4);
hu's avatar
hu committed
1399 1400 1401 1402 1403 1404 1405
}

unsigned char Cup_Key(unsigned char KLineseed, unsigned char Num, unsigned char Seed)
{
    unsigned char CupCharL = 0;
    unsigned char CupCharR = 0;

hu's avatar
hu committed
1406 1407
    CupCharL = KLineseed;
    CupCharR = KLineseed;
hu's avatar
hu committed
1408

hu's avatar
hu committed
1409
    CupCharL = (CupCharL << Num);
hu's avatar
hu committed
1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421
    CupCharR = (CupCharR >> (8 - Num));
    CupCharL = (CupCharL | CupCharR);

    CupCharL = (CupCharL ^ Seed);

    CupCharL = (~CupCharL);

    CupCharL = BitReplace(CupCharL);

    return CupCharL;
}

hu's avatar
hu committed
1422
unsigned char BitReplace(unsigned char Data)
hu's avatar
hu committed
1423 1424 1425 1426
{
    unsigned char i = 0;
    unsigned char temp = 0;

hu's avatar
hu committed
1427
    for (i = 0; i < 8; i++)
hu's avatar
hu committed
1428 1429 1430 1431 1432 1433
    {
        temp = temp << 1;
        temp |= (Data >> i) & 0x01;
    }

    return temp;
hu's avatar
hu committed
1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
}

unsigned char Common_Get_DTCstatusCHGFFK_Flag(void)
{
    return DTCstatusCHGFFK_Line;
}

void Common_Set_DTCstatusCHGFFK_Flag(unsigned char Val)
{
    DTCstatusCHGFFK_Line = Val;
}

hu's avatar
hu committed
1446 1447 1448 1449 1450 1451 1452 1453
/*-------------------------------------------------------------------------
* Function Name  : K_LINE_EOL_InitVal
* Description    : k-line数据初始化
* Input          :
* Output         : None
* Return         : None
* onther         :
--------------------------------------------------------------------------*/
hu's avatar
hu committed
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464
void K_LINE_EOL_InitVal(void)
{
    K_Line_Set.Flag = 0x7AA7A55Au;

    K_Line_Set.K_Line_LID20 = 0x00u; /* 00 应对ECE R13      //0:非应对、1:应对 */
    K_Line_Set.K_Line_LID21 = 0x00u; /* 00 EBS/ABS         //0:无、1:EBS、2:ABS(CAN应对) 3:ABS (CAN非应对) */
    K_Line_Set.K_Line_LID22 = 0x00u; /* 00 EVSC            //0:无、1:有 */
    K_Line_Set.K_Line_LID23 = 0x00u; /* 00 驻车锁定         //0:无、1:有 */
    K_Line_Set.K_Line_LID24 = 0x00u; /* 00 HSA             //0:无、1:有 */
    K_Line_Set.K_Line_LID25 = 0x00u; /* 00 AEBS            //0:无、1:有 */
    K_Line_Set.K_Line_LID26 = 0x00u; /* 00 ACC             //0:无、1:有 */
hu's avatar
hu committed
1465 1466
    K_Line_Set.K_Line_LID27 = 0x00u; /* 00 LDWS            //0:无、1:有 */
    K_Line_Set.K_Line_LID28 = 0x00u; /* 01 车辆间报警        //0:无、1:有 */
hu's avatar
hu committed
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
    K_Line_Set.K_Line_LID29 = 0x01u; /* 01 有无巡航          //0:无、1:有          /*初值1*/
    K_Line_Set.K_Line_LID2A = 0x00u; /* 00 气悬             //0:Reef、1:Rear air、2:Full air */
    K_Line_Set.K_Line_LID2B = 0x00u; /* 00 ISS             //0:无、1: eco stop、 2:Idle Stop */
    K_Line_Set.K_Line_LID2C = 0x00u; /* 00 装货台工作警报蜂鸣 //0:无、1:有             */
    K_Line_Set.K_Line_LID2D = 0x00u; /* 00 ROWS            //0:无、1:ROWS有、2LOCAL警报有 */
    K_Line_Set.K_Line_LID2E = 0x00u; /* 00 行车记录仪        //0:模拟记录仪、1:数字记录仪或行车记录仪 */
    K_Line_Set.K_Line_LID2F = 0x00u; /* 00 车型             //0:单车、1:拖车、2:全拖车 */
    K_Line_Set.K_Line_LID30 = 0x00u; /* 00 缓速器           //0:无、1:有(C&E)、2:有(F) */
    K_Line_Set.K_Line_LID31 = 0x01u; /* -- 定速巡航         //0:无、1:有 */
    K_Line_Set.K_Line_LID32 = 0x00u; /* 00 装货台种类       //0:一般、1:侧翼、2:倾倒 */
hu's avatar
hu committed
1477
    K_Line_Set.K_Line_LID33 = 0x00u; /* 01 SCR?DPD         //0:SCR无/DPD有、1:SCR有/DPD有、2:SCR无/DPD无、3:SCR有/DPD无    /*初值1*/
hu's avatar
hu committed
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
    K_Line_Set.K_Line_LID34 = 0x00u; /* 00 驻车种类         //0:FULL AIR、1:AOH                     /*初值1*/
    K_Line_Set.K_Line_LID35 = 0x00u; /* -- 气压计           //0:2针式、1:1针式 */
    K_Line_Set.K_Line_LID36 = 0x00u; /* -- 低压警报压       //0:一般输出(539kPa)、1:ADR(588kPa) */
    K_Line_Set.K_Line_LID37 = 0x01u; /* -- 超限警报         //0:无、1:有 */
    K_Line_Set.K_Line_LID38 = 0x01u; /* -- 速度警报         //0:无、1:有 */
    K_Line_Set.K_Line_LID39 = 0x00u; /* 00 可变SLD          //0:无、1:1车速、2:2车速            /*初值1*/
    K_Line_Set.K_Line_LID3A = 0x00u; /* -- OEM             //0:ISZ、1:UDT */
    K_Line_Set.K_Line_LID3B = 0x00u; /* -- 预留 */
    K_Line_Set.K_Line_LID3C = 0x00u; /* -- 预留 */
    K_Line_Set.K_Line_LID3D = 0x00u; /* -- 预留 */
hu's avatar
hu committed
1488
    K_Line_Set.K_Line_LID3E = 0x00u; /* 01 胎压匹配功能      //0:胎压功能未匹配    1:匹配 */
hu's avatar
hu committed
1489 1490
    K_Line_Set.K_Line_LID3F = 0x00u; /* -- 预留 */
    K_Line_Set.K_Line_LID40 = 0x00u; /* 00 发动机种类 */
hu's avatar
hu committed
1491
    K_Line_Set.K_Line_LID41 = 0x01u; /* 50 变速器种类&控制 /*初值50*/
hu's avatar
hu committed
1492 1493 1494 1495
    K_Line_Set.K_Line_LID42 = 0x00u; /* 00 驻车管道        /*初值 0*/
    K_Line_Set.K_Line_LID43 = 0x82u; /* 82 车型            /*初值44*/
    K_Line_Set.K_Line_LID44 = 0xFFu; /* FF 速度警报        /*初值FF*/
    K_Line_Set.K_Line_LID45 = 0xFFu; /* FF 发动机转速      /*初值FF*/
hu's avatar
hu committed
1496
    K_Line_Set.K_Line_LID46 = 0xFFu; /* FF 急加速          /*初FF*/
hu's avatar
hu committed
1497 1498 1499 1500 1501 1502 1503
    K_Line_Set.K_Line_LID47 = 0xFFu; /* FF 急减速          /*初值FF*/
    K_Line_Set.K_Line_LID48 = 0xFFu; /* FF 长时间怠速      /*初值FF*/
    K_Line_Set.K_Line_LID49 = 0xFFu; /* FF 辅助驻车        /*初值FF*/
    K_Line_Set.K_Line_LID4A = 0x32u; /* 37 变速箱油         55000 */
    K_Line_Set.K_Line_LID4B = 0x32u; /* 37 差速器油         55000 */
    K_Line_Set.K_Line_LID4C = 0x32u; /* 37 离合器油         55000 */
    K_Line_Set.K_Line_LID4D = 0x64u; /* 37 动力转向油        55000 */
hu's avatar
hu committed
1504 1505
    K_Line_Set.K_Line_LID4E = 0x3Cu; /* 32 轮胎             50000 */
    K_Line_Set.K_Line_LID4F = 0x1Eu; /* 34 机油&滤清器      22000 */
hu's avatar
hu committed
1506 1507 1508 1509
    K_Line_Set.K_Line_LID50 = 0x00u; /* -- 预留 */
    K_Line_Set.K_Line_LID51 = 0x01u; /* 01 工作模式 */
    K_Line_Set.K_Line_LID52 = 0x00u; /* 00 电子部件设定 */

hu's avatar
hu committed
1510 1511 1512
    K_Line_Set.KLINE        = 0x00u;
    K_Line_Set.No_Digit1    = 0x38u; /* 01 */
    K_Line_Set.No_Digit2    = 0x39u; /* 02 */
hu's avatar
hu committed
1513 1514 1515 1516 1517 1518 1519
    K_Line_Set.No_Digit3    = 0x38u; /* 03 */
    K_Line_Set.No_Digit4    = 0x31u; /* 04 */
    K_Line_Set.No_Digit5    = 0x38u; /* 05 */
    K_Line_Set.No_Digit6    = 0x30u; /* 06 */
    K_Line_Set.No_Digit7    = 0x36u; /* 07 */
    K_Line_Set.No_Digit8    = 0x35u; /* 08 */
    K_Line_Set.No_Digit9    = 0x33u; /* 09 */
hu's avatar
hu committed
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
    K_Line_Set.No_Digit10   = 0x30u; /* 10 */
    K_Line_Set.ECUStatus1   = 0x00u; /* 11 */
    K_Line_Set.ECUStatus2   = 0x00u; /* 12 */
    K_Line_Set.ECUStatus3   = 0x00u; /* 13 */
    K_Line_Set.ECUStatus4   = 0x00u; /* 14 */
    K_Line_Set.ECUStatus5   = 0x00u; /* 15 */
    K_Line_Set.METERCOUNT   = 0x00u; /* 16 */
    K_Line_Set.NoOfDTCFF00  = 0x00u; /* 17 */
    K_Line_Set.NoOfDTC8000  = 0x00u; /* 18 */
    K_Line_Set.TesterECU    = 0x00u; /* 19 */
    K_Line_Set.TesterECUCAN = 0x00u; /* 20 */
    K_Line_Set.User_Light1  = 10u;   /*背光亮度等级*/
    K_Line_Set.User_Light2  = 10u;   /*背光亮度等级*/
hu's avatar
hu committed
1533
}