Data_Coolant.c 15.9 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 200 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 256 257

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

    if (SYS_OPR_STAT_IGN_ON )
    {       
        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 )
{    
    if(SYS_OPR_STAT_IGN_ON)
    {                
李俭双's avatar
李俭双 committed
258
        if (Common_GetIgnOnTime() < 3000)
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 353 354 355 356 357 358 359 360
                DataCoolantTemp_Dis.u8_Holdtimer++;
                if (DataCoolantTemp_Dis.u8_Holdtimer >= CoolantFlashtimer)
                {
                    DataCoolantTemp_Dis.u8_Holdtimer = CoolantFlashtimer;
                }
                /*目标格和当前格一致时,数显如何处理*/
                /*5S后更新为目标数值*/


                
                u32ColCurNum = Data_Coolant_Cal_Num(DataCoolantTemp_Dis.u8_CurSeg, 2, (CoolantFlashtimer-DataCoolantTemp_Dis.u8_Holdtimer ), u32ColCurNum, DataCoolantTemp.Value*100);
                
   
361 362 363 364
            }
        }
        else
        {
365
            u32ColCurNum = DataCoolantTemp.Value * 100;
366
        }
367
        
368 369 370 371

        // warning

        if (DataCoolantTemp.Valid == 0)
372 373 374 375 376
        {
            DataCoolantTemp_Dis.u8_Warnflg = 1;
        }
        else
        {
377
            if (GET_DataCoolantSegValue() >= 115)
378 379 380
            {
                DataCoolantTemp_Dis.u8_Warnflg = 2;
            }
381
            else if (GET_DataCoolantSegValue() <= 112)
382 383 384 385 386
            {
                DataCoolantTemp_Dis.u8_Warnflg = 0;
            }
            else
            {
387 388 389 390
                if(DataCoolantTemp_Dis.u8_Warnflg == 1)
                {
                    DataCoolantTemp_Dis.u8_Warnflg = 0;
                }
391 392 393
            }
        }
    }
394
    else
395
    {
396 397 398 399
        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;
400
        DataCoolantTemp_Dis.u8_Flg = 0;
401
    }
402 403
}

404
uint8_t Get_Coolant_Temp_Seg(uint16_t Temp_Value)
405
{
406
    // uint8_t CurTempSeg;
407

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

501
// 水温显示格数
502 503
uint8_t GET_DataCoolantTempSegDisp(void)
{
504
    return DataCoolantTemp_Dis.u8_CurSeg;
505 506
}

507 508
// 水温显示有效标志
uint8_t GET_DataCollantTempSegValid(void)
509
{
510
    return DataCoolantTemp_Dis.Dis_Valid;
511 512
}

513
// 水温数显。作为外发使用的时候+40
514 515
uint16_t GET_DataCoolantTempValueDisp(void)
{
516
    return DataCoolantTemp.Value;
517
}
518
uint16_t GET_DataCoolantSegValue(void)
519
{
520
    return (u32ColCurNum)/100;
521
}
522
uint8_t GET_DataCollantTempValueValid(void)
523
{
524
    return DataCoolantTemp.Valid;
525 526
}

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