Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
TianYing_ty100
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TY
TianYing_ty100
Commits
24fc3f0c
Commit
24fc3f0c
authored
Jul 10, 2024
by
陈家乐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🐞
fix:49458 前轮胎压在2.3bar时,胎压报警灯黄色点亮。修改了胎压报警灯亮的判断条件
parent
6f786dd9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
GUI_Display.c
Firmware/Source/Application/GUI_Display/GUI_Display.c
+1
-1
Telltales_user.c
Firmware/Source/Component/Telltales/Telltales_user.c
+11
-3
No files found.
Firmware/Source/Application/GUI_Display/GUI_Display.c
View file @
24fc3f0c
...
...
@@ -74,7 +74,7 @@ void Gauge_Service(void)
Check_SEG_Display
();
for
(
k
=
0
;
k
<
LampCh0_MAX
;
k
++
)
{
if
(
k
==
24
)
if
(
k
==
24
||
k
==
21
||
k
==
13
||
k
==
26
)
{
k
++
;
}
...
...
Firmware/Source/Component/Telltales/Telltales_user.c
View file @
24fc3f0c
...
...
@@ -286,14 +286,18 @@ static void LED_Fuel_Execution(Tellib_uint16_t led_status)
static
Tellib_uint16_t
LED_Coolant_Judgement
(
void
)
{
Tellib_uint16_t
LED_STATE
=
0u
;
if
(
GET_DataCollantTempWarnflg
()
==
2
)
if
(
ClearODO_Flag
==
1
)
{
LED_STATE
=
2
;
LED_STATE
=
1
;
}
else
if
(
GET_DataCollantTempWarnflg
()
==
1
)
{
LED_STATE
=
3
;
}
else
if
(
GET_DataCollantTempWarnflg
()
==
2
)
{
LED_STATE
=
2
;
}
else
{
LED_STATE
=
4
;
...
...
@@ -621,7 +625,11 @@ static void LED_Lateral_Strut_Execution(Tellib_uint16_t led_status)
static
Tellib_uint16_t
LED_Tire_Pressure_Judgement
(
void
)
{
Tellib_uint16_t
LED_STATE
=
0u
;
if
((
Get_Front_FirstLearn_Flag
()
==
2
)
||
(
Get_Rear_FirstLearn_Flag
()
==
2
))
if
(
ClearODO_Flag
==
1
)
{
LED_STATE
=
1
;
}
else
if
((
Get_Front_FirstLearn_Flag
()
==
2
)
||
(
Get_Rear_FirstLearn_Flag
()
==
2
))
{
if
(
Get_Led_TPMS_Waring
()
==
1
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment