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
25a4e32b
Commit
25a4e32b
authored
May 20, 2024
by
李俭双
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🐞
fix:43514,IGOFF时关闭背景灯
parent
343070c7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
6 deletions
+18
-6
GUI_Display.c
Firmware/Source/Application/GUI_Display/GUI_Display.c
+6
-0
Telltales_user.c
Firmware/Source/Component/Telltales/Telltales_user.c
+11
-5
Sys_Task_List.c
Firmware/Source/System/Sys_Task_List.c
+1
-1
No files found.
Firmware/Source/Application/GUI_Display/GUI_Display.c
View file @
25a4e32b
...
@@ -116,6 +116,12 @@ void Gauge_Service(void)
...
@@ -116,6 +116,12 @@ void Gauge_Service(void)
else
else
{
{
Clear_Bu98
();
Clear_Bu98
();
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_35_ODO
,
LED_OFF
);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_34_TRIP
,
LED_OFF
);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_07_Screen_Time
,
LED_OFF
);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_08_KMH
,
LED_OFF
);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_09_MPH
,
LED_OFF
);
}
}
}
}
...
...
Firmware/Source/Component/Telltales/Telltales_user.c
View file @
25a4e32b
...
@@ -334,9 +334,9 @@ static void LED_Coolant_Execution(Tellib_uint16_t led_status)
...
@@ -334,9 +334,9 @@ static void LED_Coolant_Execution(Tellib_uint16_t led_status)
}
}
else
else
{
{
//
LED_Driver_Channel_Set(LampChannel_0, LampCh0_13_Temp_AlarmW, LED_OFF);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_13_Temp_AlarmW
,
LED_OFF
);
//
LED_Driver_Channel_Set(LampChannel_0, LampCh0_11_Temp_AlarmR, LED_OFF);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_11_Temp_AlarmR
,
LED_OFF
);
//
SEG_SET_LED_STS(em_SEG_Coolant, 0);
SEG_SET_LED_STS
(
em_SEG_Coolant
,
0
);
}
}
}
}
static
Tellib_uint16_t
LED_Bluetooth_Judgement
(
void
)
static
Tellib_uint16_t
LED_Bluetooth_Judgement
(
void
)
...
@@ -598,7 +598,7 @@ static Tellib_uint16_t LED_Tire_Pressure_Judgement(void)
...
@@ -598,7 +598,7 @@ static Tellib_uint16_t LED_Tire_Pressure_Judgement(void)
}
}
else
else
{
{
LED_STATE
=
0
;
LED_STATE
=
2
;
}
}
return
LED_STATE
;
return
LED_STATE
;
}
}
...
@@ -610,12 +610,18 @@ static void LED_Tire_Pressure_Execution(Tellib_uint16_t led_status)
...
@@ -610,12 +610,18 @@ static void LED_Tire_Pressure_Execution(Tellib_uint16_t led_status)
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_26_Tire_PressureW
,
LED_OFF
);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_26_Tire_PressureW
,
LED_OFF
);
SEG_SET_LED_STS
(
em_SEG_Tire_Pressure_Alarm
,
1
);
SEG_SET_LED_STS
(
em_SEG_Tire_Pressure_Alarm
,
1
);
}
}
else
else
if
(
led_status
==
2u
)
{
{
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_26_Tire_PressureW
,
LED_ON
);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_26_Tire_PressureW
,
LED_ON
);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_27_Tire_PressureY
,
LED_OFF
);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_27_Tire_PressureY
,
LED_OFF
);
SEG_SET_LED_STS
(
em_SEG_Tire_Pressure_Alarm
,
1
);
SEG_SET_LED_STS
(
em_SEG_Tire_Pressure_Alarm
,
1
);
}
}
else
{
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_26_Tire_PressureW
,
LED_OFF
);
LED_Driver_Channel_Set
(
LampChannel_0
,
LampCh0_27_Tire_PressureY
,
LED_OFF
);
SEG_SET_LED_STS
(
em_SEG_Tire_Pressure_Alarm
,
0
);
}
}
}
static
Tellib_uint16_t
LED_Navigato_Judgement
(
void
)
static
Tellib_uint16_t
LED_Navigato_Judgement
(
void
)
...
...
Firmware/Source/System/Sys_Task_List.c
View file @
25a4e32b
...
@@ -83,7 +83,7 @@ void Sys_100ms_Tasks(void)
...
@@ -83,7 +83,7 @@ void Sys_100ms_Tasks(void)
Services_Mileage_Callback
();
Services_Mileage_Callback
();
Data_Voltage_Processing_Service
();
Data_Voltage_Processing_Service
();
S3_ServerCNTT
();
S3_ServerCNTT
();
ECU_FaultCode_Processing_Service
();
//
ECU_FaultCode_Processing_Service();
if
(
u8LEDDriverCheckCount
>=
10U
)
if
(
u8LEDDriverCheckCount
>=
10U
)
{
{
...
...
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