Key_user.c 62.2 KB
Newer Older
hu's avatar
hu committed
1 2

#include "Key.h"
3
#include "Menu.h"
4 5
#include "GUI.h"
#include "CD4051.h"
6
#include "Services_ODO_User.h"
hu's avatar
hu committed
7 8

#include "DisplaySch_user.h"
hu's avatar
hu committed
9
#include "DispSch.h"
hu's avatar
hu committed
10 11 12
#include "Sound_Scheduler.h"
#include "System_Monitor.h"
#include "RTE_ADC.h"
hu's avatar
hu committed
13

hu's avatar
hu committed
14
#include "kwp2000_service.h"
hu's avatar
hu committed
15 16
#include "CAN_Communication_Matrix.h"

hu's avatar
hu committed
17
/*-------------------------------------------------------*/
18
/*无车速限制值*/
hu's avatar
hu committed
19
#define DISPSPEEDNULLMAX 66
hu's avatar
hu committed
20

hu's avatar
hu committed
21 22 23 24 25 26 27
/*----------按键具体功能执行的回调函数-----------------------*/

void Key_Operation_Enter(Key_Event_en_t enKeyEvent);
void Key_Operation_Return(Key_Event_en_t enKeyEvent);
void Key_Operation_Up(Key_Event_en_t enKeyEvent);
void Key_Operation_Down(Key_Event_en_t enKeyEvent);
void Key_Operation_Menu(Key_Event_en_t enKeyEvent);
28
void Key_Operation_ODOTrip(Key_Event_en_t enKeyEvent);
hu's avatar
hu committed
29 30 31 32 33 34 35 36 37 38 39

Key_IGN_en_t Key_Get_IGN_Status(void);

/*******************************UP***********************************************
  Function: Key_Operation_Up
  Description:
  Input:
  Output:
 *******************************UP***********************************************/
void Key_Operation_Up(Key_Event_en_t enKeyEvent)
{
hu's avatar
hu committed
40
    uint8_t CanStatus1 = 0u;
41
    uint16_t DispVSpeed = 0u;
hu's avatar
hu committed
42
    UElib_uint16_t HMI_MENU_Sta = 0u;
43

44
    HMI_Set_KEY_UP(enKeyEvent);
hu's avatar
hu committed
45

hu's avatar
hu committed
46 47 48
    HMI_MENU_Sta = Get_Cur_HMI();

    DispVSpeed = Common_Get_Disp_V_Speed();
hu's avatar
hu committed
49
    CanStatus1 = CAN_MSG_Status(ID_CanMsg0CF00400_Msg_Count);
50 51 52

    if (DispVSpeed <= DISPSPEEDNULLMAX)
    {
53
        /*----无车速,无报警----*/
hu's avatar
hu committed
54
        if (HMI_MENU_Sta != Display_Alarm)
55
        {
56
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
hu's avatar
hu committed
57
            {
hu's avatar
hu committed
58
                /*主界面 一级菜单 二级菜单*/
59
                if (((bCurMenuIDX >= _MN_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL2_6_MENU_2)) ||
60
                        ((bCurMenuIDX >= _MN_DSP_LEVEL3_4_MENU_41) && (bCurMenuIDX <= _MN_DSP_LEVEL3_4_MENU_47)))
hu's avatar
hu committed
61
                {
hu's avatar
hu committed
62
                    /*系统演示模式*/
63
                    if ((bCurMenuIDX == _MN_DSP_LEVEL2MENU_6) && (K_Line_Set.K_Line_LID27 != 0x01u) && (K_Line_Set.K_Line_LID28 != 0x01u))
hu's avatar
hu committed
64 65 66
                    {
                        NextMenu(_MN_DSP_LEVEL2MENU_4);
                    }
67 68 69 70 71
                    /*TPMS轮胎设定*/
                    else if ((bCurMenuIDX == _MN_DSP_LEVEL2_4_MENU_6) && (K_Line_Set.K_Line_LID3E != 0x01u))
                    {
                        NextMenu(_MN_DSP_LEVEL2_4_MENU_4);
                    }
72 73 74 75
                    else
                    {
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_UP);
                    }
hu's avatar
hu committed
76
                }
hu's avatar
hu committed
77
                /*系统演示模式子菜单*/
78
                else if ((bCurMenuIDX >= _MN_DSP_LEVEL2_5_MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL2_5_MENU_4))
hu's avatar
hu committed
79
                {
80
                    if ((K_Line_Set.K_Line_LID27 != 0x01u) && (bCurMenuIDX == _MN_DSP_LEVEL2_5_MENU_2))
hu's avatar
hu committed
81
                    {
82
                        ; /*Do Nothing!*/
hu's avatar
hu committed
83 84 85
                    }
                    else
                    {
86 87
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_UP);
                    }
hu's avatar
hu committed
88
                }
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
                /*背光调节*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_7_MENU_1)
                {
                    if (User_set_Num.User_Light1 < 16u)
                    {
                        User_set_Num.User_Light1++;
                    }
                }
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_7_MENU_2)
                {
                    if (User_set_Num.User_Light2 < 16u)
                    {
                        User_set_Num.User_Light2++;
                    }
                }
104 105
                /*保养通知设定 更换机油&机油滤清器*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_1)
hu's avatar
hu committed
106
                {
107
                    if (User_set_Num.User_FDJYLQQ == (uint32_t)K_Line_Set.K_Line_LID4F * 1000u)
hu's avatar
hu committed
108
                    {
hu's avatar
hu committed
109
                        User_set_Num.User_FDJYLQQ = 0u;
hu's avatar
hu committed
110
                    }
hu's avatar
hu committed
111
                }
112 113
                /*保养通知设定 更换燃油滤清器*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_2)
hu's avatar
hu committed
114
                {
115
                    if (User_set_Num.User_RYLQQ == (uint32_t)K_Line_User_RYLQQ * 1000u)
hu's avatar
hu committed
116
                    {
hu's avatar
hu committed
117
                        User_set_Num.User_RYLQQ = 0u;
hu's avatar
hu committed
118
                    }
hu's avatar
hu committed
119
                }
120 121
                /*保养通知设定 更换变速箱油*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_3)
hu's avatar
hu committed
122
                {
123
                    if (User_set_Num.User_BSXY == (uint32_t)K_Line_Set.K_Line_LID4A * 1000u)
hu's avatar
hu committed
124
                    {
125
                        User_set_Num.User_BSXY = 0u;
hu's avatar
hu committed
126
                    }
hu's avatar
hu committed
127
                }
128 129
                /*保养通知设定 更换差速器右*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_4)
hu's avatar
hu committed
130
                {
131
                    if (User_set_Num.User_CSQY == (uint32_t)K_Line_Set.K_Line_LID4B * 1000u)
hu's avatar
hu committed
132
                    {
hu's avatar
hu committed
133
                        User_set_Num.User_CSQY = 0u;
hu's avatar
hu committed
134
                    }
135 136 137 138 139
                }
                /*保养通知设定 更换动力转向油*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_6)
                {
                    if (User_set_Num.User_DLZXY == (uint32_t)K_Line_Set.K_Line_LID4D * 1000u)
hu's avatar
hu committed
140
                    {
hu's avatar
hu committed
141
                        User_set_Num.User_DLZXY = 0u;
hu's avatar
hu committed
142
                    }
143 144 145 146 147
                }
                /*保养通知设定 轮胎换位.更换*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_7)
                {
                    if (User_set_Num.User_LT == (uint32_t)K_Line_Set.K_Line_LID4E * 1000u)
hu's avatar
hu committed
148
                    {
hu's avatar
hu committed
149
                        User_set_Num.User_LT = 0u;
hu's avatar
hu committed
150
                    }
151 152 153 154
                }
                /*设置日期-年*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_11)
                {
hu's avatar
hu committed
155
                    User_set_Num.Year++;
156

hu's avatar
hu committed
157
                    if (User_set_Num.Year > 99u)
hu's avatar
hu committed
158
                    {
159
                        User_set_Num.Year = 0u;
hu's avatar
hu committed
160
                    }
161 162 163 164 165 166 167
                }
                /*设置日期-月*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_12)
                {
                    User_set_Num.Month++;

                    if (User_set_Num.Month > 12u)
hu's avatar
hu committed
168
                    {
169
                        User_set_Num.Month = 1u;
hu's avatar
hu committed
170
                    }
171 172 173 174 175
                }
                /*设置日期-日*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_13)
                {
                    User_set_Num.Date++;
hu's avatar
hu committed
176

177
                    switch (User_set_Num.Month)
hu's avatar
hu committed
178
                    {
179 180 181 182 183 184 185 186
                    case 1:
                    case 3:
                    case 5:
                    case 7:
                    case 8:
                    case 10:
                    case 12:
                        if (User_set_Num.Date > 31u)
hu's avatar
hu committed
187 188 189
                        {
                            User_set_Num.Date = 1u;
                        }
190 191 192 193 194 195
                        break;
                    case 4:
                    case 6:
                    case 9:
                    case 11:
                        if (User_set_Num.Date > 30u)
hu's avatar
hu committed
196 197 198
                        {
                            User_set_Num.Date = 1u;
                        }
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
                        break;
                    case 2:
                        if (((User_set_Num.Year % 4u == 0u) && (User_set_Num.Year % 100 != 0u)) || (User_set_Num.Year % 400u == 0u))
                        {
                            User_set_Num.LeapYear = 1u;
                        }
                        else
                        {
                            User_set_Num.LeapYear = 0u;
                        }

                        if (User_set_Num.LeapYear)
                        {
                            if (User_set_Num.Date > 29u)
                            {
                                User_set_Num.Date = 1u;
                            }
                        }
                        else
                        {
                            if (User_set_Num.Date > 28u)
                            {
                                User_set_Num.Date = 1u;
                            }
                        }
                        break;
                    default:
                        break;
hu's avatar
hu committed
227 228
                    }
                }
229 230
                /*设置时间-时*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_21)
hu's avatar
hu committed
231
                {
hu's avatar
hu committed
232
                    User_set_Num.Hour++;
hu's avatar
hu committed
233

234 235
                    if (User_set_Num.Hour > 23u)
                    {
hu's avatar
hu committed
236
                        User_set_Num.Hour = 0u;
237
                    }
hu's avatar
hu committed
238
                }
239 240
                /*设置时间-分*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_22)
hu's avatar
hu committed
241
                {
242 243 244 245
                    User_set_Num.Minute++;

                    if (User_set_Num.Minute > 59u)
                    {
hu's avatar
hu committed
246
                        User_set_Num.Minute = 0u;
247
                    }
hu's avatar
hu committed
248
                }
249 250
                /*语言设置 ----反*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_3)
hu's avatar
hu committed
251
                {
252 253
                    if (User_set_Num.User_Language > 0u)
                    {
hu's avatar
hu committed
254
                        User_set_Num.User_Language--;
255
                    }
hu's avatar
hu committed
256
                }
hu's avatar
hu committed
257 258 259 260
                /*胎压匹配界面*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_5)
                {
                    if (User_set_Num.User_TpmsStatus == 0)
hu's avatar
hu committed
261
                    {
hu's avatar
hu committed
262
                        User_set_Num.User_TpmsStatus = 1;
hu's avatar
hu committed
263
                    }
hu's avatar
hu committed
264
                    if ((User_set_Num.User_TpmsStatus == 1) && (User_set_Num.User_Tpms < 12))
hu's avatar
hu committed
265
                    {
hu's avatar
hu committed
266
                        User_set_Num.User_Tpms++;
hu's avatar
hu committed
267
                    }
hu's avatar
hu committed
268
                }
269 270
                /*高速路*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_1)
hu's avatar
hu committed
271
                {
272 273 274 275 276 277 278 279
                    if (User_set_Num.User_Gsl < 110)
                    {
                        User_set_Num.User_Gsl++;
                    }
                    else if (User_set_Num.User_Gsl == 0xFF)
                    {
                        User_set_Num.User_Gsl = 20;
                    }
hu's avatar
hu committed
280
                }
281 282
                /*一般路*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_2)
hu's avatar
hu committed
283
                {
284 285 286 287 288 289 290 291
                    if (User_set_Num.User_Ybl < 110)
                    {
                        User_set_Num.User_Ybl++;
                    }
                    else if (User_set_Num.User_Ybl == 0xFF)
                    {
                        User_set_Num.User_Ybl = 20;
                    }
hu's avatar
hu committed
292
                }
293 294
                /*发动机转速*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_3)
hu's avatar
hu committed
295
                {
296 297
                    if (User_set_Num.User_Speed < 99)
                    {
hu's avatar
hu committed
298
                        User_set_Num.User_Speed++;
299 300 301 302 303
                    }
                    else if (User_set_Num.User_Speed == 0xFF)
                    {
                        User_set_Num.User_Speed = 0;
                    }
hu's avatar
hu committed
304
                }
305 306
                /*急加速*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_4)
hu's avatar
hu committed
307
                {
308 309 310 311 312 313 314 315
                    if (User_set_Num.User_JADD < 99)
                    {
                        User_set_Num.User_JADD++;
                    }
                    else if (User_set_Num.User_JADD == 0xFF)
                    {
                        User_set_Num.User_JADD = 5;
                    }
hu's avatar
hu committed
316
                }
317 318
                /*急减速*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_5)
hu's avatar
hu committed
319
                {
320 321 322 323 324 325 326 327
                    if (User_set_Num.User_JSUB < 99)
                    {
                        User_set_Num.User_JSUB++;
                    }
                    else if (User_set_Num.User_JSUB == 0xFF)
                    {
                        User_set_Num.User_JSUB = 5;
                    }
hu's avatar
hu committed
328
                }
329 330
                /*长时间怠速设定*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_6)
hu's avatar
hu committed
331
                {
332 333 334 335
                    if (User_set_Num.User_IDLING == 0xFFu)
                    {
                        User_set_Num.User_IDLING = 0u;
                    }
hu's avatar
hu committed
336
                }
337 338
                /*辅助驻车解除设定*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_7)
hu's avatar
hu committed
339
                {
hu's avatar
hu committed
340
                    if (User_set_Num.User_Parking == 0xFFu)
341 342 343
                    {
                        User_set_Num.User_Parking = 0u;
                    }
hu's avatar
hu committed
344
                }
hu's avatar
hu committed
345
                /*工厂模式*/ /*经销商模式*/
hu's avatar
hu committed
346 347
                else if (((bCurMenuIDX >= _FAC_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _FAC_DSP_LEVEL1_3MENU_2)) ||
                         ((bCurMenuIDX >= _DEA_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _DEA_DSP_LEVEL1_3MENU_2)))
hu's avatar
hu committed
348 349 350
                {
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_UP);
                }
hu's avatar
hu committed
351 352 353 354
                else
                {
                    ;/*Do Nothing!*/
                }
hu's avatar
hu committed
355
            }
356
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
hu's avatar
hu committed
357
            {
hu's avatar
hu committed
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
                MenuFlag.Menu_Key_Time++;
                if (MenuFlag.Menu_Key_Time > 10)
                {
                    MenuFlag.Menu_Key_Time = 0;
                    /*设置日期-年*/
                    if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_11)
                    {
                        User_set_Num.Year++;

                        if (User_set_Num.Year > 99u)
                        {
                            User_set_Num.Year = 0u;
                        }
                    }
                    /*设置日期-月*/
                    else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_12)
                    {
                        User_set_Num.Month++;

                        if (User_set_Num.Month > 12u)
                        {
                            User_set_Num.Month = 1u;
                        }
                    }
                    /*设置日期-日*/
                    else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_13)
                    {
                        User_set_Num.Date++;

                        switch (User_set_Num.Month)
                        {
                        case 1:
                        case 3:
                        case 5:
                        case 7:
                        case 8:
                        case 10:
                        case 12:
                            if (User_set_Num.Date > 31u)
                            {
                                User_set_Num.Date = 1u;
                            }
                            break;
                        case 4:
                        case 6:
                        case 9:
                        case 11:
                            if (User_set_Num.Date > 30u)
                            {
                                User_set_Num.Date = 1u;
                            }
                            break;
                        case 2:
                            if (((User_set_Num.Year % 4u == 0u) && (User_set_Num.Year % 100 != 0u)) || (User_set_Num.Year % 400u == 0u))
                            {
                                User_set_Num.LeapYear = 1u;
                            }
                            else
                            {
                                User_set_Num.LeapYear = 0u;
                            }

                            if (User_set_Num.LeapYear)
                            {
                                if (User_set_Num.Date > 29u)
                                {
                                    User_set_Num.Date = 1u;
                                }
                            }
                            else
                            {
                                if (User_set_Num.Date > 28u)
                                {
                                    User_set_Num.Date = 1u;
                                }
                            }
                            break;
                        default:
                            break;
                        }
                    }
                    /*设置时间-时*/
                    else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_21)
                    {
                        User_set_Num.Hour++;

                        if (User_set_Num.Hour > 23u)
                        {
                            User_set_Num.Hour = 0u;
                        }
                    }
                    /*设置时间-分*/
                    else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_22)
                    {
                        User_set_Num.Minute++;

                        if (User_set_Num.Minute > 59u)
                        {
                            User_set_Num.Minute = 0u;
                        }
                    }
                }
hu's avatar
hu committed
460
            }
461 462 463 464 465
        }
        /*----无车速,有报警----*/
        else
        {
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
hu's avatar
hu committed
466
            {
hu's avatar
hu committed
467
                ; /*D0 Nothing!*/
hu's avatar
hu committed
468
            }
469
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
hu's avatar
hu committed
470
            {
hu's avatar
hu committed
471
                ; /*D0 Nothing!*/
hu's avatar
hu committed
472
            }
473 474 475 476
        }
    }
    else
    {
477
        /*----有车速,无报警----*/
hu's avatar
hu committed
478
        if (HMI_MENU_Sta != Display_Alarm)
479 480 481
        {
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
482
                /*工厂模式*/ /*经销商模式*/
hu's avatar
hu committed
483 484
                if (((bCurMenuIDX >= _FAC_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _FAC_DSP_LEVEL1_3MENU_2)) ||
                        ((bCurMenuIDX >= _DEA_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _DEA_DSP_LEVEL1_3MENU_2)))
hu's avatar
hu committed
485 486 487
                {
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_UP);
                }
hu's avatar
hu committed
488 489 490 491 492 493 494 495 496 497 498 499 500 501
                /*主界面 一级菜单 二级菜单那*/
                else if (((bCurMenuIDX >= _MN_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL1MENU_6)) ||
                         ((bCurMenuIDX >= _MN_DSP_LEVEL3_4_MENU_41) && (bCurMenuIDX <= _MN_DSP_LEVEL3_4_MENU_47)))
                {
                    /*系统演示模式*/
                    if ((bCurMenuIDX == _MN_DSP_LEVEL2MENU_6) && (K_Line_Set.K_Line_LID27 != 0x01u) && (K_Line_Set.K_Line_LID28 != 0x01u))
                    {
                        NextMenu(_MN_DSP_LEVEL2MENU_4);
                    }
                    else
                    {
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_UP);
                    }
                }
hu's avatar
hu committed
502 503 504 505
                else
                {
                    ;/*Do Nothing!*/
                }
506 507 508
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
509
                ; /*D0 Nothing!*/
510 511 512 513
            }
        }
        /*----有车速,有报警----*/
        else
514
        {
515 516
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
517
                ; /*D0 Nothing!*/
518 519 520
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
521
                ; /*D0 Nothing!*/
522
            }
523 524
        }
    }
hu's avatar
hu committed
525 526 527 528 529 530 531 532 533 534
}

/*******************************DOWN***********************************************
  Function: Key_Operation_Down
  Description:
  Input:
  Output:
 *******************************DOWN***********************************************/
void Key_Operation_Down(Key_Event_en_t enKeyEvent)
{
535
    uint16_t DispVSpeed = 0u;
hu's avatar
hu committed
536
    UElib_uint16_t HMI_MENU_Sta = 0u;
537

538
    HMI_Set_KEY_DOWN(enKeyEvent);
hu's avatar
hu committed
539 540 541

    HMI_MENU_Sta = Get_Cur_HMI();
    DispVSpeed = Common_Get_Disp_V_Speed();
542 543 544

    if (DispVSpeed <= DISPSPEEDNULLMAX)
    {
545
        /*----无车速,无报警----*/
hu's avatar
hu committed
546
        if (HMI_MENU_Sta != Display_Alarm)
547
        {
548
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
hu's avatar
hu committed
549
            {
550 551
                /*主界面 一级菜单 二级菜单*/
                if (((bCurMenuIDX >= _MN_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL2_6_MENU_2)) ||
552
                        ((bCurMenuIDX >= _MN_DSP_LEVEL3_4_MENU_41) && (bCurMenuIDX <= _MN_DSP_LEVEL3_4_MENU_47)))
hu's avatar
hu committed
553
                {
hu's avatar
hu committed
554 555 556
                    /*系统演示模式*/
                    if ((bCurMenuIDX == _MN_DSP_LEVEL2MENU_4) && (K_Line_Set.K_Line_LID27 != 0x01u) && (K_Line_Set.K_Line_LID28 != 0x01u))
                    {
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
                        if (K_Line_Set.K_Line_LID3E == 0x01u)
                        {
                            NextMenu(_MN_DSP_LEVEL2MENU_6);
                        }
                        else
                        {
                            ;/*Do Notingh!*/
                        }
                    }
                    /*轮胎状态显示*/
                    else if ((bCurMenuIDX == _MN_DSP_LEVEL2MENU_5) && (K_Line_Set.K_Line_LID3E != 0x01u))
                    {
                        ;/*Do Notingh!*/
                    }
                    /*TPMS轮胎设定*/
                    else if ((bCurMenuIDX == _MN_DSP_LEVEL2_4_MENU_4) && (K_Line_Set.K_Line_LID3E != 0x01u))
                    {
                        NextMenu(_MN_DSP_LEVEL2_4_MENU_6);
hu's avatar
hu committed
575 576 577 578 579
                    }
                    else
                    {
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_DOWN);
                    }
hu's avatar
hu committed
580
                }
581 582 583 584 585 586 587 588 589 590 591 592
                /*系统演示模式子菜单*/
                else if ((bCurMenuIDX >= _MN_DSP_LEVEL2_5_MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL2_5_MENU_4))
                {
                    if ((K_Line_Set.K_Line_LID28 != 0x01u) && (bCurMenuIDX == _MN_DSP_LEVEL2_5_MENU_1))
                    {
                        ; /*Do Nothing!*/
                    }
                    else
                    {
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_DOWN);
                    }
                }
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
                /*背光调节*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_7_MENU_1)
                {
                    if (User_set_Num.User_Light1 > 1u)
                    {
                        User_set_Num.User_Light1--;
                    }
                }
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_7_MENU_2)
                {
                    if (User_set_Num.User_Light2 > 1u)
                    {
                        User_set_Num.User_Light2--;
                    }
                }
608 609
                /*保养通知设定 更换机油&机油滤清器*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_1)
hu's avatar
hu committed
610
                {
hu's avatar
hu committed
611
                    if (User_set_Num.User_FDJYLQQ == 0u)
hu's avatar
hu committed
612
                    {
hu's avatar
hu committed
613
                        User_set_Num.User_FDJYLQQ = (uint32_t)K_Line_Set.K_Line_LID4F * 1000u;
hu's avatar
hu committed
614
                    }
hu's avatar
hu committed
615
                }
616 617
                /*保养通知设定 更换燃油滤清器*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_2)
hu's avatar
hu committed
618
                {
hu's avatar
hu committed
619
                    if (User_set_Num.User_RYLQQ == 0u)
hu's avatar
hu committed
620
                    {
hu's avatar
hu committed
621
                        User_set_Num.User_RYLQQ = (uint32_t)K_Line_User_RYLQQ * 1000u;
hu's avatar
hu committed
622
                    }
hu's avatar
hu committed
623
                }
624 625
                /*保养通知设定 更换变速箱油*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_3)
hu's avatar
hu committed
626
                {
hu's avatar
hu committed
627
                    if (User_set_Num.User_BSXY == 0u)
hu's avatar
hu committed
628
                    {
hu's avatar
hu committed
629
                        User_set_Num.User_BSXY = (uint32_t)K_Line_Set.K_Line_LID4A * 1000u;
hu's avatar
hu committed
630
                    }
hu's avatar
hu committed
631
                }
632 633 634
                /*保养通知设定 更换差速器油*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_4)
                {
hu's avatar
hu committed
635
                    if (User_set_Num.User_CSQY == 0u)
hu's avatar
hu committed
636
                    {
hu's avatar
hu committed
637
                        User_set_Num.User_CSQY = (uint32_t)K_Line_Set.K_Line_LID4B * 1000u;
hu's avatar
hu committed
638
                    }
639 640 641 642
                }
                /*保养通知设定 更换动力转向液*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_6)
                {
hu's avatar
hu committed
643
                    if (User_set_Num.User_DLZXY == 0u)
hu's avatar
hu committed
644
                    {
hu's avatar
hu committed
645
                        User_set_Num.User_DLZXY = (uint32_t)K_Line_Set.K_Line_LID4D * 1000u;
hu's avatar
hu committed
646
                    }
647 648 649
                }
                /*保养通知设定 轮胎换位.更换*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_3_MENU_7)
hu's avatar
hu committed
650
                {
hu's avatar
hu committed
651
                    if (User_set_Num.User_LT == 0u)
hu's avatar
hu committed
652
                    {
hu's avatar
hu committed
653
                        User_set_Num.User_LT = (uint32_t)K_Line_Set.K_Line_LID4E * 1000u;
hu's avatar
hu committed
654
                    }
655 656 657 658
                }
                /*设置日期-年*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_11)
                {
hu's avatar
hu committed
659
                    if (User_set_Num.Year > 0u)
hu's avatar
hu committed
660
                    {
661
                        User_set_Num.Year--;
hu's avatar
hu committed
662
                    }
663
                    else
hu's avatar
hu committed
664
                    {
665
                        User_set_Num.Year = 99u;
hu's avatar
hu committed
666
                    }
667 668 669 670 671
                }
                /*设置日期-月*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_12)
                {
                    if (User_set_Num.Month > 1u)
hu's avatar
hu committed
672
                    {
673
                        User_set_Num.Month--;
hu's avatar
hu committed
674 675 676
                    }
                    else
                    {
677
                        User_set_Num.Month = 12u;
hu's avatar
hu committed
678
                    }
679 680 681 682 683 684
                }
                /*设置日期-日*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_13)
                {
                    User_set_Num.Date--;
                    switch (User_set_Num.Month)
hu's avatar
hu committed
685
                    {
686 687 688 689 690 691 692
                    case 1:
                    case 3:
                    case 5:
                    case 7:
                    case 8:
                    case 10:
                    case 12:
hu's avatar
hu committed
693 694
                        if (User_set_Num.Date < 1u)
                        {
695
                            User_set_Num.Date = 31u;
hu's avatar
hu committed
696
                        }
697 698 699 700 701
                        break;
                    case 4:
                    case 6:
                    case 9:
                    case 11:
hu's avatar
hu committed
702 703
                        if (User_set_Num.Date < 1u)
                        {
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
                            User_set_Num.Date = 30u;
                        }
                        break;
                    case 2:
                        if (((User_set_Num.Year % 4u == 0u) && (User_set_Num.Year % 100u != 0u)) || (User_set_Num.Year % 400u == 0u))
                        {
                            User_set_Num.LeapYear = 1u;
                        }
                        else
                        {
                            User_set_Num.LeapYear = 0u;
                        }

                        if (User_set_Num.LeapYear)
                        {
                            if (User_set_Num.Date < 1u)
                            {
                                User_set_Num.Date = 29u;
                            }
                        }
                        else
                        {
                            if (User_set_Num.Date < 1u)
                            {
                                User_set_Num.Date = 28u;
                            }
hu's avatar
hu committed
730
                        }
731 732 733
                        break;
                    default:
                        break;
hu's avatar
hu committed
734 735
                    }
                }
736 737
                /*设置时间-时*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_21)
hu's avatar
hu committed
738
                {
739 740 741 742 743 744
                    if (User_set_Num.Hour > 0u)
                    {
                        User_set_Num.Hour--;
                    }
                    else
                    {
hu's avatar
hu committed
745
                        User_set_Num.Hour = 23u;
746
                    }
hu's avatar
hu committed
747
                }
748 749
                /*设置时间-分*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_22)
hu's avatar
hu committed
750
                {
751 752
                    if (User_set_Num.Minute > 0u)
                    {
hu's avatar
hu committed
753
                        User_set_Num.Minute--;
754 755 756
                    }
                    else
                    {
hu's avatar
hu committed
757
                        User_set_Num.Minute = 59u;
758
                    }
hu's avatar
hu committed
759
                }
760 761
                /*语言设置 ----反*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_3)
hu's avatar
hu committed
762
                {
hu's avatar
hu committed
763 764
                    if (User_set_Num.User_Language < 1)
                        User_set_Num.User_Language++;
hu's avatar
hu committed
765
                }
hu's avatar
hu committed
766 767 768 769 770 771 772 773 774 775 776 777 778 779
                /*胎压匹配界面*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_5)
                {
                    /*if(User_set_Num.User_TpmsStatus == 0)
                    {
                      if(User_set_Num.User_Par_Temp == 0)
                        User_set_Num.User_Par_Temp = 1;
                      else
                        User_set_Num.User_Par_Temp = 0;
                    }
                    else */
                    if ((User_set_Num.User_TpmsStatus == 1) && (User_set_Num.User_Tpms > 1))
                        User_set_Num.User_Tpms--;
                }
780 781
                /*高速路*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_1)
hu's avatar
hu committed
782
                {
783 784 785 786 787 788 789 790
                    if ((User_set_Num.User_Gsl > 20) && (User_set_Num.User_Gsl <= 110))
                    {
                        User_set_Num.User_Gsl--;
                    }
                    else
                    {
                        User_set_Num.User_Gsl = 0xFF;
                    }
hu's avatar
hu committed
791
                }
792 793
                /*一般路*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_2)
hu's avatar
hu committed
794
                {
795 796 797 798 799 800 801 802
                    if ((User_set_Num.User_Ybl > 20) && (User_set_Num.User_Ybl <= 110))
                    {
                        User_set_Num.User_Ybl--;
                    }
                    else
                    {
                        User_set_Num.User_Ybl = 0xFF;
                    }
hu's avatar
hu committed
803
                }
804 805
                /*发动机转速*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_3)
hu's avatar
hu committed
806
                {
807 808 809 810
                    if ((User_set_Num.User_Speed >= 0) && (User_set_Num.User_Speed <= 99))
                    {
                        User_set_Num.User_Speed--;
                    }
hu's avatar
hu committed
811
                }
812 813
                /*急加速*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_4)
hu's avatar
hu committed
814
                {
815 816 817 818 819 820 821 822
                    if ((User_set_Num.User_JADD > 5) && (User_set_Num.User_JADD <= 99))
                    {
                        User_set_Num.User_JADD--;
                    }
                    else
                    {
                        User_set_Num.User_JADD = 0xFF;
                    }
hu's avatar
hu committed
823
                }
824 825
                /*急减速*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_5)
hu's avatar
hu committed
826
                {
827 828 829 830 831 832 833 834
                    if ((User_set_Num.User_JSUB > 5) && (User_set_Num.User_JSUB <= 99))
                    {
                        User_set_Num.User_JSUB--;
                    }
                    else
                    {
                        User_set_Num.User_JSUB = 0xFF;
                    }
hu's avatar
hu committed
835
                }
836 837
                /*长时间怠速*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_6)
hu's avatar
hu committed
838
                {
839 840 841 842
                    if (User_set_Num.User_IDLING == 0u)
                    {
                        User_set_Num.User_IDLING = 0xFFu;
                    }
hu's avatar
hu committed
843
                }
844 845
                /*辅助驻车解除*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL4_4_MENU_7)
hu's avatar
hu committed
846
                {
847 848 849 850
                    if (User_set_Num.User_Parking == 0u)
                    {
                        User_set_Num.User_Parking = 0xFFu;
                    }
hu's avatar
hu committed
851
                }
hu's avatar
hu committed
852
                /*工厂模式*/ /*经销商模式*/
hu's avatar
hu committed
853 854
                else if (((bCurMenuIDX >= _FAC_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _FAC_DSP_LEVEL1_3MENU_2)) ||
                         ((bCurMenuIDX >= _DEA_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _DEA_DSP_LEVEL1_3MENU_2)))
hu's avatar
hu committed
855 856 857
                {
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_DOWN);
                }
hu's avatar
hu committed
858 859 860 861
                else
                {
                    ;/*Do Nothing!*/
                }
hu's avatar
hu committed
862
            }
863
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
hu's avatar
hu committed
864
            {
hu's avatar
hu committed
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
                MenuFlag.Menu_Key_Time++;
                if (MenuFlag.Menu_Key_Time > 10)
                {
                    MenuFlag.Menu_Key_Time = 0;
                    /*设置日期-年*/
                    if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_11)
                    {
                        if (User_set_Num.Year > 0u)
                        {
                            User_set_Num.Year--;
                        }
                        else
                        {
                            User_set_Num.Year = 99u;
                        }
                    }
                    /*设置日期-月*/
                    else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_12)
                    {
                        if (User_set_Num.Month > 1u)
                        {
                            User_set_Num.Month--;
                        }
                        else
                        {
                            User_set_Num.Month = 12u;
                        }
                    }
                    /*设置日期-日*/
                    else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_13)
                    {
                        User_set_Num.Date--;
                        switch (User_set_Num.Month)
                        {
                        case 1:
                        case 3:
                        case 5:
                        case 7:
                        case 8:
                        case 10:
                        case 12:
                            if (User_set_Num.Date < 1u)
                            {
                                User_set_Num.Date = 31u;
                            }
                            break;
                        case 4:
                        case 6:
                        case 9:
                        case 11:
                            if (User_set_Num.Date < 1u)
                            {
                                User_set_Num.Date = 30u;
                            }
                            break;
                        case 2:
                            if (((User_set_Num.Year % 4u == 0u) && (User_set_Num.Year % 100u != 0u)) || (User_set_Num.Year % 400u == 0u))
                            {
                                User_set_Num.LeapYear = 1u;
                            }
                            else
                            {
                                User_set_Num.LeapYear = 0u;
                            }

                            if (User_set_Num.LeapYear)
                            {
                                if (User_set_Num.Date < 1u)
                                {
                                    User_set_Num.Date = 29u;
                                }
                            }
                            else
                            {
                                if (User_set_Num.Date < 1u)
                                {
                                    User_set_Num.Date = 28u;
                                }
                            }
                            break;
                        default:
                            break;
                        }
                    }
                    /*设置时间-时*/
                    else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_21)
                    {
                        if (User_set_Num.Hour > 0u)
                        {
                            User_set_Num.Hour--;
                        }
                        else
                        {
                            User_set_Num.Hour = 23u;
                        }
                    }
                    /*设置时间-分*/
                    else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_22)
                    {
                        if (User_set_Num.Minute > 0u)
                        {
                            User_set_Num.Minute--;
                        }
                        else
                        {
                            User_set_Num.Minute = 59u;
                        }
                    }
                }
hu's avatar
hu committed
974
            }
975 976 977 978 979
        }
        else
        {
            /*----无车速,有报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
hu's avatar
hu committed
980
            {
hu's avatar
hu committed
981
                ; /*D0 Nothing!*/
hu's avatar
hu committed
982
            }
983
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
hu's avatar
hu committed
984
            {
hu's avatar
hu committed
985
                ; /*D0 Nothing!*/
hu's avatar
hu committed
986
            }
987 988 989 990
        }
    }
    else
    {
991
        /*----有车速,无报警----*/
hu's avatar
hu committed
992
        if (HMI_MENU_Sta != Display_Alarm)
993
        {
994 995
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
996
                /*工厂模式*/ /*经销商模式*/
hu's avatar
hu committed
997 998
                if (((bCurMenuIDX >= _FAC_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _FAC_DSP_LEVEL1_3MENU_2)) ||
                        ((bCurMenuIDX >= _DEA_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _DEA_DSP_LEVEL1_3MENU_2)))
hu's avatar
hu committed
999 1000 1001
                {
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_DOWN);
                }
hu's avatar
hu committed
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
                /*主界面 一级菜单 二级菜单*/
                else if (((bCurMenuIDX >= _MN_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL1MENU_6)) ||
                         ((bCurMenuIDX >= _MN_DSP_LEVEL3_4_MENU_41) && (bCurMenuIDX <= _MN_DSP_LEVEL3_4_MENU_47)))
                {
                    /*系统演示模式*/
                    if ((bCurMenuIDX == _MN_DSP_LEVEL2MENU_4) && (K_Line_Set.K_Line_LID27 != 0x01u) && (K_Line_Set.K_Line_LID28 != 0x01u))
                    {
                        NextMenu(_MN_DSP_LEVEL2MENU_6);
                    }
                    else
                    {
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_DOWN);
                    }
                }
hu's avatar
hu committed
1016 1017 1018 1019
                else
                {
                    ;/*Do Nothing!*/
                }
1020 1021 1022
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
1023
                ; /*D0 Nothing!*/
1024 1025 1026 1027 1028 1029 1030
            }
        }
        /*----有车速,有报警----*/
        else
        {
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
1031
                ; /*D0 Nothing!*/
1032 1033 1034
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
1035
                ; /*D0 Nothing!*/
1036
            }
1037 1038
        }
    }
hu's avatar
hu committed
1039 1040 1041 1042 1043 1044 1045 1046 1047
}
/*******************************ENTER***********************************************
  Function: Key_Operation_Enter
  Description:
  Input:
  Output:
 *******************************ENTER***********************************************/
void Key_Operation_Enter(Key_Event_en_t enKeyEvent)
{
1048
    uint16_t DispVSpeed = 0u;
hu's avatar
hu committed
1049
    UElib_uint16_t HMI_MENU_Sta = 0u;
1050

1051
    HMI_Set_KEY_CONFIRM(enKeyEvent);
hu's avatar
hu committed
1052

hu's avatar
hu committed
1053 1054
    HMI_MENU_Sta = Get_Cur_HMI();
    DispVSpeed = Common_Get_Disp_V_Speed();
1055 1056 1057

    if (DispVSpeed <= DISPSPEEDNULLMAX)
    {
1058
        /*----无车速,无报警----*/
hu's avatar
hu committed
1059
        if (HMI_MENU_Sta != Display_Alarm)
1060
        {
1061
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
hu's avatar
hu committed
1062
            {
1063
                if (((bCurMenuIDX >= _MN_DSP_LEVEL2MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL2_5_MENU_4)) ||
1064
                        ((bCurMenuIDX >= _MN_DSP_LEVEL3_4_MENU_41) && (bCurMenuIDX <= _MN_DSP_LEVEL3_4_MENU_47)))
1065
                {
hu's avatar
hu committed
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
                    /*系统演示模式*/
                    if (bCurMenuIDX == _MN_DSP_LEVEL2MENU_5)
                    {
                        if (K_Line_Set.K_Line_LID27 == 0x01u)
                        {
                            NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_ENTER);
                        }
                        else
                        {
                            NextMenu(_MN_DSP_LEVEL2_5_MENU_2);
                        }
                    }
                    else
                    {
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_ENTER);
                    }
1082 1083 1084 1085 1086 1087 1088
                }
                else if (((bCurMenuIDX >= _MN_DSP_LEVEL3_3_MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL3_4_MENU_3)) ||
                         ((bCurMenuIDX >= _MN_DSP_LEVEL4_4_MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL4_4_MENU_7)))
                {
                    MenuFlag.Menu_Return = 1u;
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_ENTER);
                }
1089 1090 1091
                /*背光调节*/
                else if ((bCurMenuIDX == _MN_DSP_LEVEL3_7_MENU_1) || (bCurMenuIDX == _MN_DSP_LEVEL3_7_MENU_2))
                {
1092
                    MenuFlag.Menu_Return = 1u;
1093 1094
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_ENTER);
                }
1095 1096 1097
                /*轮胎匹配界面*/
                else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_5)
                {
hu's avatar
hu committed
1098 1099 1100
                    if (User_set_Num.User_TpmsStatus == 1)
                    {
                        User_set_Num.User_TpmsStatus = 2;  /*匹配轮胎*/
hu's avatar
hu committed
1101
                        User_set_Num.User_TpmsSend = 3;    /*报文外发状态*/
hu's avatar
hu committed
1102 1103
                        User_set_Num.User_Temp_Return = 0; /*清空取消标记位*/
                    }
1104 1105 1106 1107 1108 1109 1110
                }
                /*Go Return*/
                else if (bCurMenuIDX == _MN_DSP_ENTER_MENU)
                {
                    MenuFlag.Menu_Return = 1;
                    NextMenu(_MN_DSP_RETURN_MENU);
                }
hu's avatar
hu committed
1111
                /*工厂模式 经销商模式*/
hu's avatar
hu committed
1112
                else if ((bCurMenuIDX >= _FAC_DSP_LEVEL0MENU_1) && (bCurMenuIDX <= _MN_DSP_MENU_MAX))
hu's avatar
hu committed
1113
                {
hu's avatar
hu committed
1114
                    if ((bCurMenuIDX == _FAC_DSP_LEVEL2_5MENU_1) || (bCurMenuIDX == _DEA_DSP_LEVEL2_5MENU_1))
hu's avatar
hu committed
1115 1116 1117
                    {
                        K_Line_Set.K_Line_LID51 = 1u;
                    }
hu's avatar
hu committed
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
                    /*工厂模式*/
                    else if (bCurMenuIDX == _FAC_DSP_LEVEL1MENU_4)
                    {
                        K_Line_Set.K_Line_LID51 = 0x01u;
                        MenuFlag.Menu_StaFlag = 0x00u;
                    }
                    /*经销商模式*/
                    else if (bCurMenuIDX == _DEA_DSP_LEVEL1MENU_4)
                    {
                        K_Line_Set.K_Line_LID51 = 0x01u;
                        MenuFlag.Menu_StaFlag = 0x02u;
                    }
hu's avatar
hu committed
1130 1131 1132 1133 1134 1135 1136 1137
                    else
                    {
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_ENTER);
                    }
                }
                else
                {
                    ;/*Do Nothing!*/
hu's avatar
hu committed
1138
                }
hu's avatar
hu committed
1139
            }
1140
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
hu's avatar
hu committed
1141
            {
1142 1143 1144
                /*Go Enter*/
                if ((bCurMenuIDX >= _MN_DSP_LEVEL3_2_MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL3_2_MENU_8))
                {
hu's avatar
hu committed
1145
                    MenuFlag.Menu_Enter_Return = bCurMenuIDX;
1146 1147
                    NextMenu(_MN_DSP_ENTER_MENU);
                }
1148 1149
            }
        }
1150
        else
hu's avatar
hu committed
1151
        {
1152 1153 1154
            /*----无车速,有报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
1155
                ; /*D0 Nothing!*/
1156 1157
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
hu's avatar
hu committed
1158
            {
hu's avatar
hu committed
1159
                ; /*D0 Nothing!*/
hu's avatar
hu committed
1160 1161
            }
        }
1162 1163 1164
    }
    else
    {
1165
        /*----有车速,无报警----*/
hu's avatar
hu committed
1166
        if (HMI_MENU_Sta != Display_Alarm)
1167
        {
1168 1169
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
1170 1171 1172
                /*工厂模式 经销商模式*/
                if ((bCurMenuIDX >= _FAC_DSP_LEVEL0MENU_1) && (bCurMenuIDX <= _MN_DSP_MENU_MAX))
                {
hu's avatar
hu committed
1173
                    if ((bCurMenuIDX == _FAC_DSP_LEVEL2_5MENU_1) || (bCurMenuIDX == _DEA_DSP_LEVEL2_5MENU_1))
hu's avatar
hu committed
1174 1175 1176
                    {
                        K_Line_Set.K_Line_LID51 = 1u;
                    }
hu's avatar
hu committed
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
                    /*工厂模式*/
                    else if (bCurMenuIDX == _FAC_DSP_LEVEL1MENU_4)
                    {
                        K_Line_Set.K_Line_LID51 = 0x01u;
                        MenuFlag.Menu_StaFlag = 0x00u;
                    }
                    /*经销商模式*/
                    else if (bCurMenuIDX == _DEA_DSP_LEVEL1MENU_4)
                    {
                        K_Line_Set.K_Line_LID51 = 0x01u;
                        MenuFlag.Menu_StaFlag = 0x02u;
                    }
hu's avatar
hu committed
1189 1190 1191 1192 1193 1194 1195 1196 1197
                    else
                    {
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_ENTER);
                    }
                }
                else
                {
                    ;/*Do Nothing!*/
                }
1198 1199 1200
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
1201
                ; /*D0 Nothing!*/
1202
            }
1203
        }
1204 1205
        /*----有车速,有报警----*/
        else
hu's avatar
hu committed
1206
        {
1207 1208
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
1209
                ; /*D0 Nothing!*/
1210 1211 1212
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
1213
                ; /*D0 Nothing!*/
1214
            }
hu's avatar
hu committed
1215
        }
1216
    }
hu's avatar
hu committed
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
}

/*******************************RETURN***********************************************
  Function: Key_Operation_Return
  Description:
  Input:
  Output:
 *******************************RETURN***********************************************/
void Key_Operation_Return(Key_Event_en_t enKeyEvent)
{
1227
    uint16_t DispVSpeed = 0u;
hu's avatar
hu committed
1228
    UElib_uint16_t HMI_MENU_Sta = 0u;
1229

1230
    HMI_Set_KEY_CANCEL(enKeyEvent);
hu's avatar
hu committed
1231 1232 1233

    HMI_MENU_Sta = Get_Cur_HMI();
    DispVSpeed = Common_Get_Disp_V_Speed();
1234 1235 1236

    if (DispVSpeed <= DISPSPEEDNULLMAX)
    {
1237
        /*----无车速,无报警----*/
hu's avatar
hu committed
1238
        if (HMI_MENU_Sta != Display_Alarm)
1239
        {
1240
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
1241
            {
1242
                if ((bCurMenuIDX >= _MN_DSP_LEVEL2_1_MENU_1) && (bCurMenuIDX < _MN_DSP_ENTER_MENU))
hu's avatar
hu committed
1243
                {
1244
                    if (
hu's avatar
hu committed
1245
                        (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_3) ||                                              /*语言设定*/
1246
                        (bCurMenuIDX == _MN_DSP_LEVEL3_7_MENU_1) || (bCurMenuIDX == _MN_DSP_LEVEL3_7_MENU_2) ||  /*亮度调节*/
hu's avatar
hu committed
1247
                        ((bCurMenuIDX >= _MN_DSP_LEVEL3_4_MENU_41) && (bCurMenuIDX <= _MN_DSP_LEVEL3_4_MENU_47)) /*省油设定子菜单*/
1248
                    )
hu's avatar
hu committed
1249
                    {
1250
                        MenuFlag.Menu_Return = 0u;
hu's avatar
hu committed
1251 1252
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_EXIT);
                    }
hu's avatar
hu committed
1253
                    else if (bCurMenuIDX == _MN_DSP_LEVEL3_4_MENU_5) /*胎压设置界面返回操作*/
hu's avatar
hu committed
1254
                    {
1255
                        if (User_set_Num.User_TpmsStatus != 2u) /*不是正在匹配状态*/
hu's avatar
hu committed
1256
                        {
1257
                            NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_EXIT);
hu's avatar
hu committed
1258 1259 1260
                        }
                        else
                        {
1261 1262
                            User_set_Num.User_TpmsStatus = 1u; /*退出匹配界面*/
                            if (User_set_Num.User_Temp_Return == 0u)
1263
                            {
1264
                                User_set_Num.User_Temp_Return = 1u; /*取消配对标记*/
hu's avatar
hu committed
1265
                                User_set_Num.User_TpmsSend = 3u;    /*报文外发状态*/
1266 1267 1268 1269 1270
                            }
                            else
                            {
                                ; /* do nonthing*/
                            }
hu's avatar
hu committed
1271 1272
                        }
                    }
1273 1274 1275 1276
                    else
                    {
                        NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_EXIT);
                    }
hu's avatar
hu committed
1277
                }
1278 1279
                /*系统演示模式*/
                else if ((bCurMenuIDX >= _MN_DSP_LEVEL3_5_MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL3_5_MENU_4))
1280
                {
1281
                    MenuFlag.Menu_Return = 0;
1282 1283
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_EXIT);
                }
1284 1285 1286 1287 1288 1289
                /*Enter Go*/
                else if (bCurMenuIDX == _MN_DSP_ENTER_MENU)
                {
                    MenuFlag.Menu_Return = 0;
                    NextMenu(MenuFlag.Menu_Enter_Return);
                }
hu's avatar
hu committed
1290 1291 1292 1293 1294
                /*工厂模式 经销商模式*/
                else if ((bCurMenuIDX >= _FAC_DSP_LEVEL0MENU_1) && (bCurMenuIDX <= _MN_DSP_MENU_MAX))
                {
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_EXIT);
                }
1295 1296
                else
                {
hu's avatar
hu committed
1297
                    ; /*do nothing*/
1298
                }
1299
            }
1300
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
1301
            {
hu's avatar
hu committed
1302
                ; /*D0 Nothing!*/
1303
            }
1304 1305 1306 1307 1308
        }
        else
        {
            /*----无车速,有报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
1309
            {
hu's avatar
hu committed
1310
                ; /*Do Nothing!*/
1311
            }
1312
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
1313
            {
1314
                MenuFlag.Key_Menu_Popup_time = 6000u;
1315 1316 1317 1318 1319
            }
        }
    }
    else
    {
hu's avatar
hu committed
1320
        if (HMI_MENU_Sta != Display_Alarm)
1321
        {
1322 1323 1324
            /*----有车速,无报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
1325 1326 1327 1328 1329 1330 1331 1332 1333
                /*工厂模式 经销商模式*/
                if ((bCurMenuIDX >= _FAC_DSP_LEVEL0MENU_1) && (bCurMenuIDX <= _MN_DSP_MENU_MAX))
                {
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_EXIT);
                }
                else
                {
                    ; /*do nothing*/
                }
1334 1335 1336
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
1337
                ; /*Do Nothing!*/
1338 1339 1340 1341 1342 1343 1344
            }
        }
        else
        {
            /*----有车速,无报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
1345
                ; /*Do Nothing!*/
1346 1347 1348 1349 1350
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
                MenuFlag.Key_Menu_Popup_time = 6000u;
            }
1351 1352
        }
    }
hu's avatar
hu committed
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
}

/*******************************Menu***********************************************
  Function: Key_Operation_Menu
  Description:
  Input:
  Output:
 *******************************Menu***********************************************/
void Key_Operation_Menu(Key_Event_en_t enKeyEvent)
{
hu's avatar
hu committed
1363
    uint8_t CanStatus1 = 0u;
1364
    uint16_t DispVSpeed = 0u;
hu's avatar
hu committed
1365
    UElib_uint16_t HMI_MENU_Sta = 0u;
hu's avatar
hu committed
1366

1367
    HMI_Set_KEY_MENU(enKeyEvent);
hu's avatar
hu committed
1368 1369 1370

    HMI_MENU_Sta = Get_Cur_HMI();
    DispVSpeed = Common_Get_Disp_V_Speed();
hu's avatar
hu committed
1371

hu's avatar
hu committed
1372 1373
    CanStatus1 = CAN_MSG_Status(ID_CanMsg0CF00400_Msg_Count);

1374 1375
    if (DispVSpeed <= DISPSPEEDNULLMAX)
    {
1376
        /*----无车速,无报警----*/
hu's avatar
hu committed
1377
        if (HMI_MENU_Sta != Display_Alarm)
1378
        {
1379
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
1380
            {
hu's avatar
hu committed
1381 1382 1383 1384 1385 1386 1387 1388
                /*自检模式进入经销商模式*/
                if (bCurMenuIDX == _MN_DSP_Menu_Test)
                {
                    K_Line_Set.K_Line_LID51 = 0x02u;
                }
                /*工厂模式*/
                else if (MenuFlag.Menu_StaFlag == 0x00u)
                {
hu's avatar
hu committed
1389 1390
                    Common_Set_Menu_FacDea_Time_Sta(0x00u);

hu's avatar
hu committed
1391 1392 1393 1394 1395 1396
                    K_Line_Set.K_Line_LID51 = 0x00u;
                    MenuFlag.Menu_StaFlag = 0x01u;
                }
                /*经销商模式*/
                else if (MenuFlag.Menu_StaFlag == 0x02u)
                {
hu's avatar
hu committed
1397 1398
                    Common_Set_Menu_FacDea_Time_Sta(0x00u);

hu's avatar
hu committed
1399 1400 1401
                    K_Line_Set.K_Line_LID51 = 0x02u;
                    MenuFlag.Menu_StaFlag = 0x01u;
                }
1402
                /*记录进入menu菜单的位置*/
hu's avatar
hu committed
1403
                else if ((bCurMenuIDX >= _MN_DSP_LEVEL1MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL1MENU_6))
1404
                {
hu's avatar
hu committed
1405
                    MenuFlag.Menu_Flag = bCurMenuIDX;
1406

1407
                    NextMenu(MenuOptTab[bCurMenuIDX].VK_IDX_ENTER);
1408
                }
1409
                /*无论从哪里都能回去*/
hu's avatar
hu committed
1410
                else if ((bCurMenuIDX >= _MN_DSP_LEVEL2MENU_1) && (bCurMenuIDX <= _MN_DSP_LEVEL3_5_MENU_4))
1411
                {
hu's avatar
hu committed
1412
                    NextMenu(MenuFlag.Menu_Flag);
1413
                }
hu's avatar
hu committed
1414
            }
1415
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
1416
            {
hu's avatar
hu committed
1417
                ; /*Do Nothing!*/
1418 1419 1420 1421 1422 1423 1424
            }
        }
        else
        {
            /*----无车速,有报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
1425 1426 1427 1428 1429
                /*自检模式进入经销商模式*/
                if (bCurMenuIDX == _MN_DSP_Menu_Test)
                {
                    K_Line_Set.K_Line_LID51 = 0x02;
                }
hu's avatar
hu committed
1430 1431 1432
                /*工厂模式*/
                else if (MenuFlag.Menu_StaFlag == 0x00u)
                {
hu's avatar
hu committed
1433 1434
                    Common_Set_Menu_FacDea_Time_Sta(0x00u);

hu's avatar
hu committed
1435 1436 1437 1438 1439 1440
                    K_Line_Set.K_Line_LID51 = 0x00u;
                    MenuFlag.Menu_StaFlag = 0x01u;
                }
                /*经销商模式*/
                else if (MenuFlag.Menu_StaFlag == 0x02u)
                {
hu's avatar
hu committed
1441 1442
                    Common_Set_Menu_FacDea_Time_Sta(0x00u);

hu's avatar
hu committed
1443 1444 1445
                    K_Line_Set.K_Line_LID51 = 0x02u;
                    MenuFlag.Menu_StaFlag = 0x01u;
                }
1446 1447 1448
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
1449
                ; /*Do Nothing!*/
1450
            }
1451 1452 1453 1454
        }
    }
    else
    {
hu's avatar
hu committed
1455
        if (HMI_MENU_Sta != Display_Alarm)
1456
        {
1457 1458 1459
            /*----有车速,无报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475
                /*工厂模式*/
                if (MenuFlag.Menu_StaFlag == 0x00u)
                {
                    Common_Set_Menu_FacDea_Time_Sta(0x00u);

                    K_Line_Set.K_Line_LID51 = 0x00u;
                    MenuFlag.Menu_StaFlag = 0x01u;
                }
                /*经销商模式*/
                else if (MenuFlag.Menu_StaFlag == 0x02u)
                {
                    Common_Set_Menu_FacDea_Time_Sta(0x00u);

                    K_Line_Set.K_Line_LID51 = 0x02u;
                    MenuFlag.Menu_StaFlag = 0x01u;
                }
1476 1477 1478
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
1479
                ; /*Do Nothing!*/
1480 1481 1482 1483 1484 1485 1486
            }
        }
        else
        {
            /*----有车速,无报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
hu's avatar
hu committed
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
                /*工厂模式*/
                if (MenuFlag.Menu_StaFlag == 0x00u)
                {
                    Common_Set_Menu_FacDea_Time_Sta(0x00u);

                    K_Line_Set.K_Line_LID51 = 0x00u;
                    MenuFlag.Menu_StaFlag = 0x01u;
                }
                /*经销商模式*/
                else if (MenuFlag.Menu_StaFlag == 0x02u)
                {
                    Common_Set_Menu_FacDea_Time_Sta(0x00u);

                    K_Line_Set.K_Line_LID51 = 0x02u;
                    MenuFlag.Menu_StaFlag = 0x01u;
                }
1503 1504 1505
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
hu's avatar
hu committed
1506
                ; /*Do Nothing!*/
1507
            }
1508 1509
        }
    }
hu's avatar
hu committed
1510 1511
}

1512 1513 1514 1515 1516 1517
/*******************************ODOTrip***********************************************
  Function: Key_Operation_ODOTrip
  Description:
  Input:
  Output:
 *******************************ODOTrip***********************************************/
hu's avatar
hu committed
1518
void Key_Operation_ODOTrip(Key_Event_en_t enKeyEvent)
1519 1520 1521
{
    uint16_t DispVSpeed = 0u;
    UElib_uint16_t HMI_MENU_Sta = 0u;
1522
    uint8_t PowerStatus;
1523 1524 1525 1526 1527

    HMI_Set_KEY_ODOTRIP(enKeyEvent);

    HMI_MENU_Sta = Get_Cur_HMI();
    DispVSpeed = Common_Get_Disp_V_Speed();
hu's avatar
hu committed
1528
    PowerStatus = Common_Get_IG_Sts();
1529

hu's avatar
hu committed
1530
    if (enKeyEvent == KEY_EVENT_OFF_TO_ON)
1531
    {
hu's avatar
hu committed
1532 1533 1534 1535
        MenuFlag.Key_MenuTest_Long = 1u;
    }
    else if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
    {
1536
        if (PowerStatus == COMMON_POWER_ON)
hu's avatar
hu committed
1537
        {
1538
            if (HMI_MENU_Sta == Display_StartAnimation)
hu's avatar
hu committed
1539
            {
1540 1541 1542 1543
                if (MenuFlag.Key_MenuTest_ShortNum < 100u)
                {
                    MenuFlag.Key_MenuTest_ShortNum++;
                }
hu's avatar
hu committed
1544
            }
1545 1546
            else if (bCurMenuIDX == _MN_DSP_Menu_Test)
            {
hu's avatar
hu committed
1547

1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
            }
            else if (User_set_Num.Trip_Type == TRAPA)
            {
                User_set_Num.Trip_Type = TRAPB;
            }
            else if (User_set_Num.Trip_Type == TRAPB)
            {
                User_set_Num.Trip_Type = TRAPA;
            }
            else
            {
                ;/*Do Nothing !*/
            }
1561 1562 1563
        }
        else
        {
1564
            State_Flag.Menu_Key_Static = 1u;
1565 1566 1567 1568
        }
    }
    else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
    {
hu's avatar
hu committed
1569
        if (PowerStatus == COMMON_POWER_ON)
1570
        {
hu's avatar
hu committed
1571 1572 1573 1574 1575 1576 1577 1578
            if (User_set_Num.Trip_Type == TRAPA)
            {
                Data_Clear_Trip(EM_TRIP_A);
            }
            else
            {
                Data_Clear_Trip(EM_TRIP_B);
            }
1579

hu's avatar
hu committed
1580 1581 1582 1583
            if (State_Flag.FState_ClearOilTx == 0u)
            {
                State_Flag.FState_ClearOilTx = 1u;
            }
1584
        }
1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
    }
#if 0
    if (DispVSpeed <= DISPSPEEDNULLMAX)
    {
        if (HMI_MENU_Sta != Display_Alarm)
        {
            /*----无车速,无报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
                ;
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
                ; /*Do Nothing!*/
            }
        }
        else
        {
            /*----无车速,有报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
                ; /*Do Nothing!*/
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
                ; /*Do Nothing!*/
            }
        }
    }
    else
    {
        if (HMI_MENU_Sta != Display_Alarm)
        {
            /*----有车速,无报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
                ; /*Do Nothing!*/
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
                ; /*Do Nothing!*/
            }
        }
        else
        {
            /*----有车速,无报警----*/
            if (enKeyEvent == KEY_EVENT_SHORT_PRESS)
            {
                ; /*Do Nothing!*/
            }
            else if (enKeyEvent == KEY_EVENT_LONG_PRESS)
            {
                ; /*Do Nothing!*/
            }
        }
    }
#endif
}

hu's avatar
hu committed
1644 1645 1646 1647
uint8_t Common_Get_RetMenu_Flag(void)
{
    return MenuFlag.Menu_Flag;
}
hu's avatar
hu committed
1648 1649 1650 1651 1652
/*------------读按键实时状态的回调函数-------------------------------------------*/
Key_Real_Status_en_t Key_Real_Status_Read_Enter(void);
Key_Real_Status_en_t Key_Real_Status_Read_Return(void);
Key_Real_Status_en_t Key_Real_Status_Read_Up(void);
Key_Real_Status_en_t Key_Real_Status_Read_Down(void);
hu's avatar
hu committed
1653
Key_Real_Status_en_t Key_Real_Status_Read_Menu(void);
hu's avatar
hu committed
1654 1655
/*-------------------------------------------------*/

hu's avatar
hu committed
1656 1657 1658 1659 1660
// Menu_R   = 24000*470 / (24000 + 470) =  460.97Ω
// Enter_R  = 24000*6800 / (24000 + 6800) =  5298.7Ω
// Return_R = 24000*15000 / (24000 + 15000) =  9230.77Ω
// Up_R     = 24000*1200 / (24000 + 1200) =  1142.86Ω
// Down_R   = 24000*3300 / (24000 + 3300) =  2901.1Ω
hu's avatar
hu committed
1661

hu's avatar
hu committed
1662 1663 1664 1665 1666
// Menu_R   = 16000*470 / (16000 + 470) =  456.59Ω
// Enter_R  = 16000*6800 / (16000 + 6800) =  4771.9Ω
// Return_R = 16000*15000 / (16000 + 15000) =  7741.94Ω
// Up_R     = 16000*1200 / (16000 + 1200) =  1116.28Ω
// Down_R   = 16000*3300 / (16000 + 3300) =  2736Ω
hu's avatar
hu committed
1667 1668

//实际按键测试
1669
//无操作     21000~24000Ω
hu's avatar
hu committed
1670 1671 1672 1673 1674
// Menu_R        640~680Ω
// Enter_R       5300~5700Ω
// Return_R      9000~9500Ω
// Up_R          1300~1400Ω
// Down_R        3000~3200Ω
1675 1676 1677

/*上*/
Key_Real_Status_en_t Key_Real_Status_Read_Up(void)
hu's avatar
hu committed
1678 1679 1680
{
    Key_Real_Status_en_t enKeyRealStatus = KEY_LINE_LOOSEN;
    uint16_t Key_R = 0;
1681 1682 1683 1684 1685 1686 1687 1688 1689

    Key_R = (uint16_t)RTE_Read_KEY_R();

    if (RTE_Read_KEY_R_Valid() == 0)
    {
        enKeyRealStatus = KEY_LINE_LOOSEN;
    }
    else
    {
hu's avatar
hu committed
1690
        if ((Key_R >= (1250 - 400)) && (Key_R <= (1250 + 400)))
1691 1692 1693 1694 1695 1696 1697 1698
        {
            enKeyRealStatus = KEY_LINE_PRESS;
        }
        else
        {
            enKeyRealStatus = KEY_LINE_LOOSEN;
        }
    }
hu's avatar
hu committed
1699 1700 1701 1702

    return enKeyRealStatus;
}

1703 1704
/*下*/
Key_Real_Status_en_t Key_Real_Status_Read_Down(void)
hu's avatar
hu committed
1705 1706 1707
{
    Key_Real_Status_en_t enKeyRealStatus = KEY_LINE_LOOSEN;
    uint16_t Key_R = 0;
1708 1709 1710 1711 1712 1713 1714 1715 1716

    Key_R = (uint16_t)RTE_Read_KEY_R();

    if (RTE_Read_KEY_R_Valid() == 0)
    {
        enKeyRealStatus = KEY_LINE_LOOSEN;
    }
    else
    {
hu's avatar
hu committed
1717
        if ((Key_R >= (2900 - 400)) && (Key_R <= (2900 + 400)))
1718 1719 1720 1721 1722 1723 1724 1725 1726
        {
            enKeyRealStatus = KEY_LINE_PRESS;
        }
        else
        {
            enKeyRealStatus = KEY_LINE_LOOSEN;
        }
    }

hu's avatar
hu committed
1727 1728 1729
    return enKeyRealStatus;
}

1730 1731
/*Enter*/
Key_Real_Status_en_t Key_Real_Status_Read_Enter(void)
hu's avatar
hu committed
1732 1733 1734 1735
{
    Key_Real_Status_en_t enKeyRealStatus = KEY_LINE_LOOSEN;
    uint16_t Key_R = 0;

1736 1737 1738 1739 1740 1741 1742 1743
    Key_R = (uint16_t)RTE_Read_KEY_R();

    if (RTE_Read_KEY_R_Valid() == 0)
    {
        enKeyRealStatus = KEY_LINE_LOOSEN;
    }
    else
    {
hu's avatar
hu committed
1744
        if ((Key_R >= (4800 - 400)) && (Key_R <= (4800 + 400)))
1745 1746 1747 1748 1749 1750 1751 1752
        {
            enKeyRealStatus = KEY_LINE_PRESS;
        }
        else
        {
            enKeyRealStatus = KEY_LINE_LOOSEN;
        }
    }
hu's avatar
hu committed
1753 1754 1755
    return enKeyRealStatus;
}

1756 1757
/*Return*/
Key_Real_Status_en_t Key_Real_Status_Read_Return(void)
hu's avatar
hu committed
1758 1759 1760
{
    Key_Real_Status_en_t enKeyRealStatus = KEY_LINE_LOOSEN;
    uint16_t Key_R = 0;
1761 1762 1763 1764 1765 1766 1767 1768 1769

    Key_R = (uint16_t)RTE_Read_KEY_R();

    if (RTE_Read_KEY_R_Valid() == 0)
    {
        enKeyRealStatus = KEY_LINE_LOOSEN;
    }
    else
    {
hu's avatar
hu committed
1770
        if ((Key_R >= (7800 - 400)) && (Key_R <= (7800 + 400)))
1771 1772 1773 1774 1775 1776 1777 1778
        {
            enKeyRealStatus = KEY_LINE_PRESS;
        }
        else
        {
            enKeyRealStatus = KEY_LINE_LOOSEN;
        }
    }
hu's avatar
hu committed
1779 1780 1781 1782

    return enKeyRealStatus;
}

1783 1784
/*Menu*/
Key_Real_Status_en_t Key_Real_Status_Read_Menu(void)
hu's avatar
hu committed
1785 1786 1787
{
    Key_Real_Status_en_t enKeyRealStatus = KEY_LINE_LOOSEN;
    uint16_t Key_R = 0;
1788 1789 1790 1791 1792 1793 1794 1795 1796

    Key_R = (uint16_t)RTE_Read_KEY_R();

    if (RTE_Read_KEY_R_Valid() == 0)
    {
        enKeyRealStatus = KEY_LINE_LOOSEN;
    }
    else
    {
hu's avatar
hu committed
1797
        if ((Key_R >= (500 - 300)) && (Key_R <= (500 + 300)))
1798 1799 1800 1801 1802 1803 1804 1805
        {
            enKeyRealStatus = KEY_LINE_PRESS;
        }
        else
        {
            enKeyRealStatus = KEY_LINE_LOOSEN;
        }
    }
hu's avatar
hu committed
1806 1807 1808 1809

    return enKeyRealStatus;
}

1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
/*TRIO-ODO*/
Key_Real_Status_en_t Key_Real_Status_Read_ODOTrip(void)
{
    Key_Real_Status_en_t enKeyRealStatus = KEY_LINE_LOOSEN;
    uint16_t Key_R = 0;

    Key_R = (uint16_t)CD4051_COM3_X5_IN;

    if (Key_R == 0u)
    {
        enKeyRealStatus = KEY_LINE_PRESS;
    }
    else
    {
        enKeyRealStatus = KEY_LINE_LOOSEN;
    }

    return enKeyRealStatus;
}
hu's avatar
hu committed
1829 1830
/*---------------------------------------------------------------------------------------*/
const Key_Attribute_st_t stKeyAttribute[KEY_NUM_MAX] =
1831
{
hu's avatar
hu committed
1832 1833 1834 1835 1836
    {KEY_NEED_DEBOUNCE_NORMAL, Key_Real_Status_Read_Up, Key_Operation_Up},
    {KEY_NEED_DEBOUNCE_NORMAL, Key_Real_Status_Read_Down, Key_Operation_Down},
    {KEY_NEED_DEBOUNCE_NORMAL, Key_Real_Status_Read_Enter, Key_Operation_Enter},
    {KEY_NEED_DEBOUNCE_NORMAL, Key_Real_Status_Read_Return, Key_Operation_Return},
    {KEY_NEED_DEBOUNCE_NORMAL, Key_Real_Status_Read_Menu, Key_Operation_Menu},
1837
    {KEY_NEED_DEBOUNCE_NORMAL, Key_Real_Status_Read_ODOTrip, Key_Operation_ODOTrip},
hu's avatar
hu committed
1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851
};

Key_IGN_en_t Key_Get_IGN_Status(void)
{
    Key_IGN_en_t ret = KEY_IG_INVALID;
    if (SYS_OPR_STAT_IGN_ON)
    {
        ret = KEY_IG_ON;
    }
    else
    {
        ret = KEY_IG_OFF;
    }
    return ret;
1852
}