Data_Fuel_User.c 8.76 KB
Newer Older
hu's avatar
hu committed
1 2 3 4 5 6 7
#include "Data_Fuel_User.h"
#include "FuelConfig.h"
#include "Common_Interface.h"
#include "RTE_ADC.h"
#include "GPIO.h"
#include "Services_ODO_User.h"
//-------------------------------------------
hu's avatar
hu committed
8
//燃油 数据处理
hu's avatar
hu committed
9
//-------------------------------------------
hu's avatar
hu committed
10
// 342 - 4.2.燃油表
hu's avatar
hu committed
11 12 13
//-------------------------------------------

/*----------------------------------------------------------------------------------------------------------------------
hu's avatar
hu committed
14
格          0      1       2       3       4       5       6       7       8       9       10      11      12
hu's avatar
hu committed
15

hu's avatar
hu committed
16
阻值(Up)   -      144.5   126.5   108.1   90.9    75.7    60.6    47.3    38.2    29.1    21      15.5    9.9
hu's avatar
hu committed
17

hu's avatar
hu committed
18
step                13      23      33      43      52      61      68      73      79      83      86      90
hu's avatar
hu committed
19

hu's avatar
hu committed
20
阻值(Down)     150    137.3   119.1   100.9   84.8    69.7    54.5    43.6    34.5    25.4    18.8    13.2    -
hu's avatar
hu committed
21

hu's avatar
hu committed
22
step        0       17      27      38      47      55      64      70      76      81      84      88
hu's avatar
hu committed
23 24 25



hu's avatar
hu committed
26
*-----------------------------------------------------------------------------------------------------------------------*/
hu's avatar
hu committed
27
static uint8_t Fuel_CurSeg = 0;
hu's avatar
hu committed
28 29 30

/*-------------------------------------------------------------------------
 * Function Name  : Fuel_User_KL30_Init
hu's avatar
hu committed
31
 * Description    :
hu's avatar
hu committed
32 33 34 35 36 37 38
 * Input          : None
 * Output         : None
 * Return         : None
 * onther         : None
 --------------------------------------------------------------------------*/
void Fuel_User_KL30_Init(void)
{
hu's avatar
hu committed
39 40
    FuelStruct FuelInitPara;
    AFC_INIT AFCInit;
hu's avatar
hu committed
41 42 43 44
    uint32_t ODO_Value = 0u;

    ODO_Value = Data_ODO_Read();

hu's avatar
hu committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
    FuelInitPara.FuelShortCircuitR = FUEL_R_MIN_VAL;
    FuelInitPara.FuelOpenCircuitR = FUEL_R_MAX_VAL;

    FuelInitPara.DisplayZoneBoundary[0] = DISPLAY_BOUNDARY_ES;  // 1500
    FuelInitPara.DisplayZoneBoundary[1] = DISPLAY_BOUNDARY_1;   // 1500
    FuelInitPara.DisplayZoneBoundary[2] = DISPLAY_BOUNDARY_2;   // 1373
    FuelInitPara.DisplayZoneBoundary[3] = DISPLAY_BOUNDARY_3;   // 1191
    FuelInitPara.DisplayZoneBoundary[4] = DISPLAY_BOUNDARY_4;   // 1009
    FuelInitPara.DisplayZoneBoundary[5] = DISPLAY_BOUNDARY_5;   // 848
    FuelInitPara.DisplayZoneBoundary[6] = DISPLAY_BOUNDARY_6;   // 697
    FuelInitPara.DisplayZoneBoundary[7] = DISPLAY_BOUNDARY_7;   // 545
    FuelInitPara.DisplayZoneBoundary[8] = DISPLAY_BOUNDARY_8;   // 436
    FuelInitPara.DisplayZoneBoundary[9] = DISPLAY_BOUNDARY_9;   // 345
    FuelInitPara.DisplayZoneBoundary[10] = DISPLAY_BOUNDARY_10; // 254
    FuelInitPara.DisplayZoneBoundary[11] = DISPLAY_BOUNDARY_11; // 188
    FuelInitPara.DisplayZoneBoundary[12] = DISPLAY_BOUNDARY_12; // 132
    FuelInitPara.DisplayZoneBoundary[13] = DISPLAY_BOUNDARY_13; //  40
    FuelInitPara.DisplayZoneBoundary[14] = DISPLAY_BOUNDARY_FS; //  30

    AFCInit.CalcAFCMaxNum = 100;      /*50公里或者100公里已更新*/
    AFCInit.AFCMin = 30;              /*油耗最小值十倍*/
    AFCInit.AFCMax = 300;             /*油耗最大值*/
    AFCInit.AFCPreinstall = 80;       /*油耗初始值*/
    AFCInit.CurODO = ODO_Value * 100; /*总共里数100倍*/
    AFCInit.MaxDRMileage = 69900;     /*续航里程最大值*/
hu's avatar
hu committed
70 71 72 73 74 75 76 77 78 79 80 81

    InitFuelParamter(&FuelInitPara);
    InitAFC(&AFCInit);

    //----hyq--20190603--燃油上涨为下降的0.6
    SetIgnOffRefuelThreshold(6);

    SetPowerDnStep(0);

    SetFuelSensorRecoverGroupCnt(10);
    SetFuelSensorOpenCircuitGroupCnt(120);
    SetFuelSensorShortCircuitGroupCnt(120);
hu's avatar
hu committed
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
}
void Fuel_User_KL15_ON_Init(void)
{
}

void Fuel_User_KL15_OFF_Init(void)
{
}
void Fuel_User_Wakeup_Init(void)
{
}
void Fuel_User_Sleep_Init(void)
{
}
/*-------------------------------------------------------------------------
 * Function Name  : Fuel_User_KL15_ON_Processing_Service
hu's avatar
hu committed
98
 * Description    :
hu's avatar
hu committed
99 100 101 102 103
 * Input          : None
 * Output         : None
 * Return         : None
 * onther         : 10Ms调用
 --------------------------------------------------------------------------*/
hu's avatar
hu committed
104
static uint8_t Fuel_CyrStep = 0u;
hu's avatar
hu committed
105 106
void Fuel_User_KL15_ON_Processing_Service(void)
{
hu's avatar
hu committed
107 108 109 110 111 112 113 114 115 116
    AFC_PARA AFCPara;
    uint8_t FuelR_Valid = 0u;
    uint8_t Vspeed_Valid = 0u;
    uint8_t Espeed_Valid = 0u;
    uint8_t FuelMode = 0u;
    uint8_t Step = 0u;
    uint16_t FuelR = 0u;
    uint16_t Vspeed = 0u;
    uint16_t Espeed = 0u;
    uint16_t FuelResistanceV = 0u;
hu's avatar
hu committed
117
    uint32_t ODO_Value = 0u;
hu's avatar
hu committed
118

hu's avatar
hu committed
119
    // In ---> Lib
hu's avatar
hu committed
120 121 122 123
    FuelR_Valid = RTE_Read_FUEL_R_Valid();
    Vspeed_Valid = Common_Get_Act_V_Speed_Valid();
    Espeed_Valid = Common_Get_Act_E_Speed_Valid();

hu's avatar
hu committed
124
    if ((Common_Get_IG_Sts() == COMMON_POWER_ON) && (Common_Get_IG_Sts_Valid() == COMMON_Valid))
hu's avatar
hu committed
125
    {
hu's avatar
hu committed
126
        if (FuelR_Valid)
hu's avatar
hu committed
127
        {
hu's avatar
hu committed
128 129 130 131 132 133
            FuelR = RTE_Read_FUEL_R();
        }
        else
        {
            FuelR = 0;
        }
hu's avatar
hu committed
134

hu's avatar
hu committed
135 136 137 138 139 140 141 142
        if (Vspeed_Valid)
        {
            Vspeed = Common_Get_Act_V_Speed();
        }
        else
        {
            Vspeed = 0;
        }
hu's avatar
hu committed
143

hu's avatar
hu committed
144 145 146 147 148 149 150 151
        if (Espeed_Valid)
        {
            Espeed = Common_Get_Act_E_Speed();
        }
        else
        {
            Espeed = 0;
        }
hu's avatar
hu committed
152

hu's avatar
hu committed
153 154
        SetPowerSt(1);
        AFCTimerCall();
hu's avatar
hu committed
155

hu's avatar
hu committed
156
        ODO_Value = Data_ODO_Read();
hu's avatar
hu committed
157

hu's avatar
hu committed
158 159 160 161
        AFCPara.CurODO = ODO_Value * 100; // m
        AFCPara.FuleConsume = 0;
        AFCPara.RPM = Espeed;          // 1
        AFCPara.Speed = (Vspeed * 10); // 0.1
hu's avatar
hu committed
162

hu's avatar
hu committed
163 164
        SetAFCPara((AFC_PARA *)&AFCPara);
        FuelFSM(FuelR); /*新版增加系数*/
hu's avatar
hu committed
165

hu's avatar
hu committed
166 167 168
        FuelResistanceV = GetFuelResistance(); //燃油电阻获取
        // Lib ---> Out
        FuelMode = GetFuelSensorState(); /*燃油状态获取*/
hu's avatar
hu committed
169

hu's avatar
hu committed
170 171 172 173 174 175 176 177 178 179
        if (FuelMode == FuelSensorNormal)
        {
            Fuel_CurSeg = (uint16_t)GetFuelSeg();  /*段*/
            Fuel_CyrStep = (uint16_t)GetFuelStep(); /*步*/
        }
        else
        {
            Fuel_CurSeg = 0u;
            Fuel_CyrStep = 0u;
        }
hu's avatar
hu committed
180
    }
hu's avatar
hu committed
181 182 183
}
/*-------------------------------------------------------------------------
 * Function Name  : Fuel_User_KL15_OFF_Processing_Service
hu's avatar
hu committed
184
 * Description    :
hu's avatar
hu committed
185 186 187 188 189 190 191
 * Input          : None
 * Output         : None
 * Return         : None
 * onther         : 嵌入到100Ms中断中
 --------------------------------------------------------------------------*/
void Fuel_User_KL15_OFF_Processing_Service(void)
{
hu's avatar
hu committed
192
    uint8_t i;
hu's avatar
hu committed
193 194
    uint8_t FuelR_Valid = 0;
    uint16_t FuelR = 0;
hu's avatar
hu committed
195 196 197 198 199

    FuelR_Valid = RTE_Read_FUEL_R_Valid();
    FuelR = RTE_Read_FUEL_R();

    if (Common_Get_IG_Sts_Valid() == COMMON_Valid)
hu's avatar
hu committed
200
    {
hu's avatar
hu committed
201
        if (Common_Get_IG_Sts() == COMMON_POWER_OFF)
hu's avatar
hu committed
202
        {
hu's avatar
hu committed
203 204 205 206 207 208 209 210
            SetPowerSt(0);
            for (i = 0; i < 10; i++)
            {
                AFCTimerCall();
            }
            FuelFSM(FuelR);
        }
    }
hu's avatar
hu committed
211
}
hu's avatar
hu committed
212

hu's avatar
hu committed
213 214 215 216 217 218
/*-------------------------------------------------------------------------
 * Function Name  : Fuel_Get_CurSeg
 * Description    : 燃油当前格
 * Input          : None
 * Output         : None
 * Return         : None
hu's avatar
hu committed
219
 * onther         :
hu's avatar
hu committed
220 221 222
 --------------------------------------------------------------------------*/
uint8_t Fuel_Get_CurSeg(void)
{
hu's avatar
hu committed
223
    return Fuel_CurSeg;
hu's avatar
hu committed
224 225 226 227 228 229 230 231 232 233 234
}
/*-------------------------------------------------------------------------
 * Function Name  : Fuel_Get_Percent
 * Description    : 燃油百分比
 * Input          : None
 * Output         : None
 * Return         : None
 * onther         : 应用于外发报文
 --------------------------------------------------------------------------*/
uint8_t Fuel_Get_Percent(void)
{
hu's avatar
hu committed
235 236
    uint16_t Percent = 0;
    uint8_t Step = 0;
hu's avatar
hu committed
237 238 239 240

    Step = GetFuelStep();
    if (Step <= 10)
    {
hu's avatar
hu committed
241
        Percent = 0;
hu's avatar
hu committed
242 243 244
    }
    else if (Step >= 90)
    {
hu's avatar
hu committed
245
        Percent = 100;
hu's avatar
hu committed
246 247 248
    }
    else
    {
hu's avatar
hu committed
249 250 251 252
        Step -= 10;
        Percent = Step;
        Percent *= 100; //放大100倍
        Percent /= 80;  // 90 - 10
hu's avatar
hu committed
253
    }
hu's avatar
hu committed
254
    return Percent;
hu's avatar
hu committed
255 256 257 258
}

uint16_t Fuel_Get_Res(void)
{
hu's avatar
hu committed
259
    return GetFuelResistance();
hu's avatar
hu committed
260 261 262
}
uint16_t Fuel_Get_Step(void)
{
hu's avatar
hu committed
263
    return GetFuelStep();
hu's avatar
hu committed
264 265 266 267
}

uint8_t Fuel_Get_LowAlarm(void)
{
hu's avatar
hu committed
268 269 270 271 272
    uint8_t u8Result = 0;
    uint8_t FuelMode = 0;
    uint8_t Step = 0;
    uint8_t FuelR_Valid = 0;
    uint16_t FuelR = 0;
hu's avatar
hu committed
273 274 275 276 277 278 279 280 281 282 283 284
    FuelR_Valid = RTE_Read_FUEL_R_Valid();

    FuelMode = GetFuelSensorState();
    Step = GetFuelStep();

    if (FuelR_Valid)
    {
        FuelR = RTE_Read_FUEL_R();
    }

    if (FuelMode == FuelSensorNormal)
    {
hu's avatar
hu committed
285
        if (FuelR > 30 && FuelR < 3000)
hu's avatar
hu committed
286 287 288
        {
            if (Step < 20)
            {
hu's avatar
hu committed
289
                u8Result = 1;
hu's avatar
hu committed
290 291 292
            }
            else
            {
hu's avatar
hu committed
293
                u8Result = 0;
hu's avatar
hu committed
294 295 296 297
            }
        }
        else
        {
hu's avatar
hu committed
298
            u8Result = 0;
hu's avatar
hu committed
299 300 301 302
        }
    }
    else
    {
hu's avatar
hu committed
303
        u8Result = 0;
hu's avatar
hu committed
304 305
    }

hu's avatar
hu committed
306
    return u8Result;
hu's avatar
hu committed
307
}