Commit 1687e182 authored by hu's avatar hu

调整GUI新版数字显示

parent 72e115d2
......@@ -391,7 +391,7 @@ uint8_t Get_DataTPMS_SensorErrorWarningSig_Value(TPMSNUM_t TPMSTyreID)
/******************************************************************************
Function:
Description:获取某个编号轮胎压力报警
Description:获取某个编号轮胎压力报警状态
Input:输入枚举编号
Output:
******************************************************************************/
......@@ -418,6 +418,12 @@ uint8_t Get_TPMSPresure_Alarm(TPMSNUM_t TPMSTyreID)
return Ret;
}
/******************************************************************************
Function: Get_TPMSLow_Presure_Sta
Description:获取所有轮胎胎压低状态
Input:
Output:
******************************************************************************/
uint8_t Get_TPMSLow_Presure_Sta(void)
{
uint8_t Low_Presure = 0u;
......@@ -445,6 +451,12 @@ uint8_t Get_TPMSLow_Presure_Sta(void)
return Low_Presure;
}
/******************************************************************************
Function: Get_TPMSHigh_Presure_Sta
Description:获取所有轮胎胎压高状态
Input:
Output:
******************************************************************************/
uint8_t Get_TPMSHigh_Presure_Sta(void)
{
uint8_t High_Presure = 8u;
......@@ -472,6 +484,12 @@ uint8_t Get_TPMSHigh_Presure_Sta(void)
return High_Presure;
}
/******************************************************************************
Function: Get_TPMSHigh_Temperature_Sta
Description:获取所有轮胎胎温高状态
Input:
Output:
******************************************************************************/
uint8_t Get_TPMSHigh_Temperature_Sta(void)
{
uint8_t High_Temperature = 0u;
......@@ -499,6 +517,12 @@ uint8_t Get_TPMSHigh_Temperature_Sta(void)
return High_Temperature ;
}
/******************************************************************************
Function: Get_TPMSFast_air_leakage
Description:
Input:
Output:
******************************************************************************/
uint8_t Get_TPMSFast_air_leakage(void)
{
uint8_t Fast_air_leakage = 0u;
......@@ -526,6 +550,13 @@ uint8_t Get_TPMSFast_air_leakage(void)
return Fast_air_leakage ;
}
/******************************************************************************
Function: Get_TPMSLow_Voltage_Sta
Description:
Input:
Output:
******************************************************************************/
uint8_t Get_TPMSLow_Voltage_Sta(void)
{
uint8_t Low_Voltage = 0x00u;
......@@ -553,6 +584,12 @@ uint8_t Get_TPMSLow_Voltage_Sta(void)
return Low_Voltage ;
}
/******************************************************************************
Function: Get_TPMSNo_signal_Sta
Description:
Input:
Output:
******************************************************************************/
uint8_t Get_TPMSNo_signal_Sta(void)
{
uint8_t No_signal = 0x00u;
......@@ -580,6 +617,12 @@ uint8_t Get_TPMSNo_signal_Sta(void)
return No_signal;
}
/******************************************************************************
Function: Get_TPMSSensor_fault_Sta
Description:
Input:
Output:
******************************************************************************/
uint8_t Get_TPMSSensor_fault_Sta(void)
{
uint8_t Sensor_fault = 0x00u;
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment