Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
VC66_7C
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
ISUZU
VC66_7C
Commits
1687e182
Commit
1687e182
authored
Dec 13, 2021
by
hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整GUI新版数字显示
parent
72e115d2
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
74 additions
and
31 deletions
+74
-31
Service_TPMS.c
source/Application/APP/Data_TPMS/Service_TPMS.c
+44
-1
GUI.c
source/Application/Graphic/GUI/GUI.c
+30
-30
No files found.
source/Application/APP/Data_TPMS/Service_TPMS.c
View file @
1687e182
...
@@ -391,7 +391,7 @@ uint8_t Get_DataTPMS_SensorErrorWarningSig_Value(TPMSNUM_t TPMSTyreID)
...
@@ -391,7 +391,7 @@ uint8_t Get_DataTPMS_SensorErrorWarningSig_Value(TPMSNUM_t TPMSTyreID)
/******************************************************************************
/******************************************************************************
Function:
Function:
Description:获取某个编号轮胎压力报警
Description:获取某个编号轮胎压力报警
状态
Input:输入枚举编号
Input:输入枚举编号
Output:
Output:
******************************************************************************/
******************************************************************************/
...
@@ -418,6 +418,12 @@ uint8_t Get_TPMSPresure_Alarm(TPMSNUM_t TPMSTyreID)
...
@@ -418,6 +418,12 @@ uint8_t Get_TPMSPresure_Alarm(TPMSNUM_t TPMSTyreID)
return
Ret
;
return
Ret
;
}
}
/******************************************************************************
Function: Get_TPMSLow_Presure_Sta
Description:获取所有轮胎胎压低状态
Input:
Output:
******************************************************************************/
uint8_t
Get_TPMSLow_Presure_Sta
(
void
)
uint8_t
Get_TPMSLow_Presure_Sta
(
void
)
{
{
uint8_t
Low_Presure
=
0u
;
uint8_t
Low_Presure
=
0u
;
...
@@ -445,6 +451,12 @@ uint8_t Get_TPMSLow_Presure_Sta(void)
...
@@ -445,6 +451,12 @@ uint8_t Get_TPMSLow_Presure_Sta(void)
return
Low_Presure
;
return
Low_Presure
;
}
}
/******************************************************************************
Function: Get_TPMSHigh_Presure_Sta
Description:获取所有轮胎胎压高状态
Input:
Output:
******************************************************************************/
uint8_t
Get_TPMSHigh_Presure_Sta
(
void
)
uint8_t
Get_TPMSHigh_Presure_Sta
(
void
)
{
{
uint8_t
High_Presure
=
8u
;
uint8_t
High_Presure
=
8u
;
...
@@ -472,6 +484,12 @@ uint8_t Get_TPMSHigh_Presure_Sta(void)
...
@@ -472,6 +484,12 @@ uint8_t Get_TPMSHigh_Presure_Sta(void)
return
High_Presure
;
return
High_Presure
;
}
}
/******************************************************************************
Function: Get_TPMSHigh_Temperature_Sta
Description:获取所有轮胎胎温高状态
Input:
Output:
******************************************************************************/
uint8_t
Get_TPMSHigh_Temperature_Sta
(
void
)
uint8_t
Get_TPMSHigh_Temperature_Sta
(
void
)
{
{
uint8_t
High_Temperature
=
0u
;
uint8_t
High_Temperature
=
0u
;
...
@@ -499,6 +517,12 @@ uint8_t Get_TPMSHigh_Temperature_Sta(void)
...
@@ -499,6 +517,12 @@ uint8_t Get_TPMSHigh_Temperature_Sta(void)
return
High_Temperature
;
return
High_Temperature
;
}
}
/******************************************************************************
Function: Get_TPMSFast_air_leakage
Description:
Input:
Output:
******************************************************************************/
uint8_t
Get_TPMSFast_air_leakage
(
void
)
uint8_t
Get_TPMSFast_air_leakage
(
void
)
{
{
uint8_t
Fast_air_leakage
=
0u
;
uint8_t
Fast_air_leakage
=
0u
;
...
@@ -526,6 +550,13 @@ uint8_t Get_TPMSFast_air_leakage(void)
...
@@ -526,6 +550,13 @@ uint8_t Get_TPMSFast_air_leakage(void)
return
Fast_air_leakage
;
return
Fast_air_leakage
;
}
}
/******************************************************************************
Function: Get_TPMSLow_Voltage_Sta
Description:
Input:
Output:
******************************************************************************/
uint8_t
Get_TPMSLow_Voltage_Sta
(
void
)
uint8_t
Get_TPMSLow_Voltage_Sta
(
void
)
{
{
uint8_t
Low_Voltage
=
0x00u
;
uint8_t
Low_Voltage
=
0x00u
;
...
@@ -553,6 +584,12 @@ uint8_t Get_TPMSLow_Voltage_Sta(void)
...
@@ -553,6 +584,12 @@ uint8_t Get_TPMSLow_Voltage_Sta(void)
return
Low_Voltage
;
return
Low_Voltage
;
}
}
/******************************************************************************
Function: Get_TPMSNo_signal_Sta
Description:
Input:
Output:
******************************************************************************/
uint8_t
Get_TPMSNo_signal_Sta
(
void
)
uint8_t
Get_TPMSNo_signal_Sta
(
void
)
{
{
uint8_t
No_signal
=
0x00u
;
uint8_t
No_signal
=
0x00u
;
...
@@ -580,6 +617,12 @@ uint8_t Get_TPMSNo_signal_Sta(void)
...
@@ -580,6 +617,12 @@ uint8_t Get_TPMSNo_signal_Sta(void)
return
No_signal
;
return
No_signal
;
}
}
/******************************************************************************
Function: Get_TPMSSensor_fault_Sta
Description:
Input:
Output:
******************************************************************************/
uint8_t
Get_TPMSSensor_fault_Sta
(
void
)
uint8_t
Get_TPMSSensor_fault_Sta
(
void
)
{
{
uint8_t
Sensor_fault
=
0x00u
;
uint8_t
Sensor_fault
=
0x00u
;
...
...
source/Application/Graphic/GUI/GUI.c
View file @
1687e182
This diff is collapsed.
Click to expand it.
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