Data_Coolant.c 16.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

#include "Data_Coolant\Data_Coolant.h"
#include "Application.h"


DataCoolantTempStruct DataCoolantTemp ;
DataCoolantTempDisStruct DataCoolantTemp_Dis;




void Data_Coolant_Temp_KL30_Init ( void )
{
    DataCoolantTemp.Value = 0; 
    DataCoolantTemp.Valid = 0;      

    DataCoolantTemp_Dis.u8_CurSeg = 0;
    DataCoolantTemp_Dis.u8_DestSeg = 0;
    DataCoolantTemp_Dis.u8_UpFlashtimer = CoolantFlashtimer; 
    DataCoolantTemp_Dis.u8_DownFlashtimer = CoolantFlashtimer; 
    
      

    DataCoolantTemp_Dis.u8_Warnflg = 0;
    DataCoolantTemp_Dis.u8_Flg = 0;    

}

void Data_Coolant_Temp_KL15_Init ( void )
{
    DataCoolantTemp_Dis.u8_CurSeg = 0;
    DataCoolantTemp_Dis.u8_DestSeg = 0;
    DataCoolantTemp_Dis.u8_UpFlashtimer = 0; 
    DataCoolantTemp_Dis.u8_DownFlashtimer = 0; 

    
    DataCoolantTemp_Dis.u8_Warnflg = 0;
    DataCoolantTemp_Dis.u8_Flg = 0;   
}

41 42 43 44 45 46 47 48 49 50 51 52

#define COOLANT_NUM_TIME 5 // 数显多久变化一次,暂定100ms

typedef struct
{
    /*该段的下限值*/
    uint16_t u16HYSSegLow;
    /*该段的上限值*/
    uint16_t u16HYSSegHigh;
} HYS_Seg_Table_st_t;
const HYS_Seg_Table_st_t stHYSSegTableTemp[7] =
    {
53 54 55 56 57 58 59
        {0U, 4700U},    // 0
        {5000U, 5900U},   // 1
        {6200U, 7700U},   // 2
        {8000U, 9500U},   // 3
        {9800U, 11200U},  // 4
        {11500U, 19900U}, // 5
        {19900U, 20000U}, // 6
60 61 62
};
uint32_t u32CoolantDataTimeCount = 0UL;
uint32_t u32ColCurNum = 0UL; /*阻尼数显*/
63
    uint32_t u32CoolantNum = 0UL;/*当前实际数据,与显示数值不完全一致*/
64 65 66 67 68 69 70 71 72 73 74
/*
u32CoolantDir:0:下行,1:上行 2:无变化

*/
uint32_t Data_Coolant_Cal_Num(uint32_t u32CoolantCurSeg, uint32_t u32CoolantDir, uint32_t u32CoolantRemTime, uint32_t u32CoolantCurNum, uint32_t u32CoolantDesNum)
{
    uint32_t u32CoolantNumMax = 0UL;
    uint32_t u32CoolantNumMin = 0UL;
    uint32_t u32CoolantSegDesNum = 0UL;
    uint32_t u32CoolantCalBuf = 0UL;
    uint32_t u32CoolantCalBuf1 = 0UL;
75
    uint32_t u32CoolantCalResult = u32CoolantCurNum;
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141

    /*计算当前格对应的目标数值*/
    /*当前格数对应的数值范围,目标数值是否在这个范围内,如果在就直接用目标值。如果不在就根据上下行选择该范围内的极大和极小值。*/
    /*这样就找到了当前格对应的目标数值*/
    u32CoolantNumMax = stHYSSegTableTemp[u32CoolantCurSeg + 1].u16HYSSegLow;
    if (u32CoolantCurSeg)
    {
        u32CoolantNumMin = stHYSSegTableTemp[u32CoolantCurSeg - 1].u16HYSSegHigh;
    }
    else
    {
        u32CoolantNumMin = stHYSSegTableTemp[u32CoolantCurSeg].u16HYSSegLow;
    }

    if ((u32CoolantDesNum >= u32CoolantNumMin) && (u32CoolantDesNum <= u32CoolantNumMax))
    {
        u32CoolantSegDesNum = u32CoolantDesNum;
    }
    else
    {
        if (u32CoolantDir == 1) // UP
        {
            u32CoolantSegDesNum = u32CoolantNumMax;
        }
        else if (u32CoolantDir == 0) // down
        {
            u32CoolantSegDesNum = u32CoolantNumMin;
        }
        else
        {
            u32CoolantSegDesNum = u32CoolantDesNum;
        }
    }

    if (u32CoolantDataTimeCount < COOLANT_NUM_TIME)
    {
        u32CoolantDataTimeCount++;
    }
    else
    {
        u32CoolantDataTimeCount = 0UL;

        u32CoolantCalBuf = u32CoolantRemTime / COOLANT_NUM_TIME;
        if (u32CoolantCalBuf)
        {

            if (u32CoolantNum < u32CoolantSegDesNum)
            {
                u32CoolantCalBuf1 = u32CoolantSegDesNum - u32CoolantNum;
                u32CoolantCalBuf1 = u32CoolantCalBuf1 / u32CoolantCalBuf;
                u32CoolantNum += u32CoolantCalBuf1;
                if (u32CoolantNum > u32CoolantSegDesNum)
                {
                    u32CoolantNum = u32CoolantSegDesNum;
                }
            }
            else
            {
                u32CoolantCalBuf1 = u32CoolantNum - u32CoolantSegDesNum;
                u32CoolantCalBuf1 = u32CoolantCalBuf1 / u32CoolantCalBuf;
                u32CoolantNum -= u32CoolantCalBuf1;
                if (u32CoolantNum < u32CoolantSegDesNum)
                {
                    u32CoolantNum = u32CoolantSegDesNum;
                }
            }
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
        u32CoolantCalResult = u32CoolantNum;
        if (u32CoolantDir == 0) // down
        {
                // uint32_t u32CoolantCalBuf2 = 0UL;
                //             if (u32CoolantNum>u32CoolantCurNum)
                //             {
                //                u32CoolantCalBuf2 =  u32CoolantNum-u32CoolantCurNum;
                //             }
                //             else
                //             {
                //                u32CoolantCalBuf2 =  u32CoolantCurNum-u32CoolantNum;
                                
                //             }
                //             if (u32CoolantCalBuf2>=100)
                //             {
                                
                //            u32CoolantNum+=99UL;
                //             }

             if ((u32CoolantNum+99)>=u32CoolantCurNum)
             {
             u32CoolantCalResult= u32CoolantCurNum;
             }
             else
             {
                
             u32CoolantCalResult= ((u32CoolantNum+99)/100*100);
             }
             
            
        }
        

175 176 177 178
        }
        else // 0
        {
            u32CoolantNum = u32CoolantSegDesNum;
179
            u32CoolantCalResult = u32CoolantNum;
180 181 182 183 184 185
        }
    }

    /*根据目标数值计算每个变化周期内数值变化的大小,*/
    /*根据目标数值以及剩余时间,修改当前显示值*/

186 187
   // return u32CoolantNum;
    return u32CoolantCalResult;
188 189 190
}

void Data_Coolant_Temp_Processing_Service(void)
191
{
192 193 194 195
    uint16_t  Coolant_Temperature = 0;
    uint8_t   Coolant_Temperature_State = 0;
    uint32_t  Temp = 0;
    uint8_t   i = 0;
196 197 198 199

    Coolant_Temperature = Get_CAN_CH0_ID_101_Sig_ECU_Engine_Temperature();
    Coolant_Temperature_State = Get_CAN_CH0_ID_101_Sig_ECU_Engine_Temperature_State();

200
    if (Common_Get_IG_Sts( ) == COMMON_POWER_ON )
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
    {       
        if(CAN_MSG_Status(&CAN_CH0_CanMsgOp, CAN_CH0_ID_CAN_0x101_Msg_Count) == CAN_SIG_LOST)
        {
            DataCoolantTemp.Valid = 0;
            DataCoolantTemp.Value = 0;                       
        }
        else
        {
            if(Coolant_Temperature_State == 1)
            {
                DataCoolantTemp.Valid = 0;
                DataCoolantTemp.Value = 0; 
            }
            else
            {
                DataCoolantTemp.Valid = 1;
                if(Coolant_Temperature >= 2730)
                {
                    Coolant_Temperature -= 2730;                   
                }
                else
                {                    
                    Coolant_Temperature   = 0;  
                }

                if ((Coolant_Temperature % 10) >= 5)
                {
                    Coolant_Temperature += 5;
                }

                if(Coolant_Temperature > 1990) 
                {
                    Coolant_Temperature = 1990 ;    
                } 

                DataCoolantTemp.Value = Coolant_Temperature / 10;
            }
            
            
        }
    }
    else
    {
        DataCoolantTemp.Valid = 0;
        DataCoolantTemp.Value = 0;       
    }   

    //显示   
    Data_Coolant_Temp_Display();        

}


void Data_Coolant_Temp_Display ( void )
{    
256
    if(Common_Get_IG_Sts( ) == COMMON_POWER_ON)
257
    {                
258
        if (Common_GetIgnOnTime() < 3030)
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
        {   
            DataCoolantTemp_Dis.u8_Uptimer = CoolantSelfCheckFlashtimer; 
            DataCoolantTemp_Dis.u8_Downtimer = CoolantSelfCheckFlashtimer; 
 
            if(DataCoolantTemp_Dis.u8_CurSeg == 0)
            {
                DataCoolantTemp_Dis.u8_DestSeg = 5;    
            }
            if(DataCoolantTemp_Dis.u8_CurSeg == 5)
            {
                DataCoolantTemp_Dis.u8_DestSeg = 0;    
            }
            DataCoolantTemp_Dis.u8_Warnflg = 0; 
            DataCoolantTemp_Dis.u8_Flg = 0;
            DataCoolantTemp_Dis.Dis_Valid = 0; 
        }
        else
        {
            DataCoolantTemp_Dis.u8_Uptimer = CoolantFlashtimer; 
            DataCoolantTemp_Dis.u8_Downtimer = CoolantFlashtimer;

            Get_Coolant_Temp_Seg(DataCoolantTemp.Value);

            if(DataCoolantTemp.Valid == 0)       
            {
                DataCoolantTemp_Dis.Dis_Valid = 0; 
                DataCoolantTemp_Dis.u8_UpFlashtimer = DataCoolantTemp_Dis.u8_Uptimer; 
                DataCoolantTemp_Dis.u8_DownFlashtimer = DataCoolantTemp_Dis.u8_Downtimer; 
                DataCoolantTemp_Dis.u8_CurSeg = 0;
                DataCoolantTemp_Dis.u8_DestSeg = 0 ;                            
289 290 291
                DataCoolantTemp_Dis.u8_Flg = 0;  
                u32ColCurNum = DataCoolantTemp.Value * 100 ;
                DataCoolantTemp_Dis.u8_Holdtimer = CoolantFlashtimer;          
292 293 294 295
            } 
            else
            {  
                DataCoolantTemp_Dis.Dis_Valid = 1; 
296
                if (DataCoolantTemp_Dis.u8_Flg == 2)
297
                {
298
                    DataCoolantTemp_Dis.u8_Flg = 1;
299 300 301 302 303 304
                    DataCoolantTemp_Dis.u8_UpFlashtimer = 0; 
                    DataCoolantTemp_Dis.u8_DownFlashtimer = 0; 
                }  
                else if(DataCoolantTemp_Dis.u8_Flg == 0)
                {
                    DataCoolantTemp_Dis.u8_Flg = 2;  
305 306 307
                    DataCoolantTemp_Dis.u8_CurSeg =  DataCoolantTemp_Dis.u8_DestSeg; 
                    DataCoolantTemp_Dis.u8_UpFlashtimer = DataCoolantTemp_Dis.u8_Uptimer; 
                    DataCoolantTemp_Dis.u8_DownFlashtimer = DataCoolantTemp_Dis.u8_Downtimer; 
308 309
                    u32ColCurNum = DataCoolantTemp.Value * 100;                    
                    DataCoolantTemp_Dis.u8_Holdtimer = CoolantFlashtimer;
310
                } 
311 312 313 314
                else
                {
                    ;
                }
315
                
316 317
            }
        }
318
        if (Common_GetIgnOnTime() >= 3030)
319
        {
320 321 322 323 324 325 326 327 328 329 330 331 332
            if(DataCoolantTemp_Dis.u8_CurSeg > DataCoolantTemp_Dis.u8_DestSeg )
            {
                u32ColCurNum = Data_Coolant_Cal_Num(DataCoolantTemp_Dis.u8_CurSeg, 0, (DataCoolantTemp_Dis.u8_Downtimer - DataCoolantTemp_Dis.u8_DownFlashtimer), u32ColCurNum, DataCoolantTemp.Value*100);
                DataCoolantTemp_Dis.u8_UpFlashtimer = 0; 
                DataCoolantTemp_Dis.u8_Holdtimer = 0; 
                DataCoolantTemp_Dis.u8_DownFlashtimer++;
                if(DataCoolantTemp_Dis.u8_DownFlashtimer >= DataCoolantTemp_Dis.u8_Downtimer)
                {
                    DataCoolantTemp_Dis.u8_DownFlashtimer = 0;
                    DataCoolantTemp_Dis.u8_CurSeg--;
                }
            }
            else if (DataCoolantTemp_Dis.u8_CurSeg < DataCoolantTemp_Dis.u8_DestSeg)
333
            {
334
                u32ColCurNum = Data_Coolant_Cal_Num(DataCoolantTemp_Dis.u8_CurSeg, 1, (DataCoolantTemp_Dis.u8_Uptimer - DataCoolantTemp_Dis.u8_UpFlashtimer), u32ColCurNum, DataCoolantTemp.Value*100);
335
                DataCoolantTemp_Dis.u8_DownFlashtimer = 0;
336 337 338 339 340 341 342
                DataCoolantTemp_Dis.u8_Holdtimer = 0;
                DataCoolantTemp_Dis.u8_UpFlashtimer++;
                if (DataCoolantTemp_Dis.u8_UpFlashtimer >= DataCoolantTemp_Dis.u8_Uptimer)
                {
                    DataCoolantTemp_Dis.u8_UpFlashtimer = 0;
                    DataCoolantTemp_Dis.u8_CurSeg++;
                }
343
            }
344
            else
345
            {
346
                   DataCoolantTemp_Dis.u8_DownFlashtimer = 0;
347
                DataCoolantTemp_Dis.u8_UpFlashtimer = 0;
348 349 350 351 352
                DataCoolantTemp_Dis.u8_Holdtimer =  CoolantFlashtimer;//++;
                // if (DataCoolantTemp_Dis.u8_Holdtimer >= CoolantFlashtimer)
                // {
                //     DataCoolantTemp_Dis.u8_Holdtimer = CoolantFlashtimer;
                // }
353 354 355
                /*目标格和当前格一致时,数显如何处理*/
                /*5S后更新为目标数值*/
                u32ColCurNum = Data_Coolant_Cal_Num(DataCoolantTemp_Dis.u8_CurSeg, 2, (CoolantFlashtimer-DataCoolantTemp_Dis.u8_Holdtimer ), u32ColCurNum, DataCoolantTemp.Value*100);
356 357 358 359 360 361 362 363 364 365 366 367
                // if(u32ColCurNum < DataCoolantTemp.Value*100)
                // {
                //     u32ColCurNum += 100;
                // }
                // else if (u32ColCurNum > DataCoolantTemp.Value*100)
                // {
                //     u32ColCurNum -= 100;
                // }
                // else
                // {
                //     u32ColCurNum = DataCoolantTemp.Value*100;
                // }
368
   
369 370 371 372
            }
        }
        else
        {
373
            u32ColCurNum = DataCoolantTemp.Value * 100;
374
        }
375
        
376 377 378 379

        // warning

        if (DataCoolantTemp.Valid == 0)
380 381 382 383 384
        {
            DataCoolantTemp_Dis.u8_Warnflg = 1;
        }
        else
        {
385
            if (GET_DataCoolantSegValue() >= 115)
386 387 388
            {
                DataCoolantTemp_Dis.u8_Warnflg = 2;
            }
389
            else if (GET_DataCoolantSegValue() <= 112)
390 391 392 393 394
            {
                DataCoolantTemp_Dis.u8_Warnflg = 0;
            }
            else
            {
395 396 397 398
                if(DataCoolantTemp_Dis.u8_Warnflg == 1)
                {
                    DataCoolantTemp_Dis.u8_Warnflg = 0;
                }
399 400 401
            }
        }
    }
402
    else
403
    {
404 405 406 407
        DataCoolantTemp_Dis.Dis_Valid = 0;
        DataCoolantTemp_Dis.u8_UpFlashtimer = DataCoolantTemp_Dis.u8_Uptimer;
        DataCoolantTemp_Dis.u8_DownFlashtimer = DataCoolantTemp_Dis.u8_Downtimer;
        DataCoolantTemp_Dis.u8_Warnflg = 0;
408
        DataCoolantTemp_Dis.u8_Flg = 0;
409
    }
410 411
}

412
uint8_t Get_Coolant_Temp_Seg(uint16_t Temp_Value)
413
{
414
    // uint8_t CurTempSeg;
415

416
    if (Temp_Value < 50)
417
    {
418
        if (DataCoolantTemp_Dis.u8_CurSeg > 1)
419
        {
420
            DataCoolantTemp_Dis.u8_DestSeg = 1;
421 422 423
        }
        else if (DataCoolantTemp_Dis.u8_CurSeg > 0)
        {
424
            if (Temp_Value <= 47)
425 426 427 428 429 430 431 432 433
            {
                DataCoolantTemp_Dis.u8_DestSeg = 0;
            }
        }
        else
        {
            DataCoolantTemp_Dis.u8_DestSeg = 0;
        }
    }
434
    else if ((Temp_Value < 62) && (Temp_Value >= 50))
435
    {
436
        if (DataCoolantTemp_Dis.u8_CurSeg > 2)
437
        {
438
            DataCoolantTemp_Dis.u8_DestSeg = 2;
439
        }
440 441 442
        else if (DataCoolantTemp_Dis.u8_CurSeg > 1)
        {
            if (Temp_Value <= 59)
443 444 445 446 447 448
            {
                DataCoolantTemp_Dis.u8_DestSeg = 1;
            }
        }
        else
        {
449 450
            DataCoolantTemp_Dis.u8_DestSeg = 1;
        }
451
    }
452
    else if ((Temp_Value < 80) && (Temp_Value >= 62))
453
    {
454
        if (DataCoolantTemp_Dis.u8_CurSeg > 3)
455
        {
456
            DataCoolantTemp_Dis.u8_DestSeg = 3;
457
        }
458
        else if (DataCoolantTemp_Dis.u8_CurSeg > 2)
459
        {
460
            if (Temp_Value <= 77)
461
            {
462
                DataCoolantTemp_Dis.u8_DestSeg = 2;
463 464 465 466
            }
        }
        else
        {
467
            DataCoolantTemp_Dis.u8_DestSeg = 2;
468 469
        }
    }
470
    else if ((Temp_Value < 98) && (Temp_Value >= 80))
471
    {
472
        if (DataCoolantTemp_Dis.u8_CurSeg > 4)
473
        {
474
            DataCoolantTemp_Dis.u8_DestSeg = 4;
475
        }
476
        else if (DataCoolantTemp_Dis.u8_CurSeg > 3)
477
        {
478
            if (Temp_Value <= 95)
479
            {
480
                DataCoolantTemp_Dis.u8_DestSeg = 3;
481 482 483 484
            }
        }
        else
        {
485
            DataCoolantTemp_Dis.u8_DestSeg = 3;
486 487
        }
    }
488
    else if ((Temp_Value < 115) && (Temp_Value >= 98))
489
    {
490
        if (DataCoolantTemp_Dis.u8_CurSeg > 4)
491
        {
492
            if (Temp_Value <= 112)
493
            {
494
                DataCoolantTemp_Dis.u8_DestSeg = 4;
495 496 497 498
            }
        }
        else
        {
499
            DataCoolantTemp_Dis.u8_DestSeg = 4;
500
        }
501
    }
502 503
    else
    {
504 505 506
        DataCoolantTemp_Dis.u8_DestSeg = 5;
    }
    return DataCoolantTemp_Dis.u8_DestSeg;
507 508
}

509
// 水温显示格数
510 511
uint8_t GET_DataCoolantTempSegDisp(void)
{
512
    return DataCoolantTemp_Dis.u8_CurSeg;
513 514
}

515 516
// 水温显示有效标志
uint8_t GET_DataCollantTempSegValid(void)
517
{
518
    return DataCoolantTemp_Dis.Dis_Valid;
519 520
}

521
// 水温数显。作为外发使用的时候+40
522 523
uint16_t GET_DataCoolantTempValueDisp(void)
{
524
    return DataCoolantTemp.Value;
525
}
526
uint16_t GET_DataCoolantSegValue(void)
527
{
528
    return (uint16_t)((u32ColCurNum)/100);
529
}
530
uint8_t GET_DataCollantTempValueValid(void)
531
{
532
    return DataCoolantTemp.Valid;
533 534
}

535 536 537 538 539
// 水温灯及显示的报警信号  0:无报警,正常显示   1:掉线或者state无效,白色闪烁  2:高温,红色闪烁
uint8_t GET_DataCollantTempWarnflg(void)
{
    return DataCoolantTemp_Dis.u8_Warnflg;
}