Commit f83c27e1 authored by zhengyuan.bai's avatar zhengyuan.bai

feat: 故障码支持显示16进制数

parent dcb6b00a
......@@ -148,8 +148,8 @@ void Gauge_flue_Display(void)
void Gauge_faultcode_Display(void)
{
uint8_t u8faucodeValid = Get_FaultCode_Valid();
uint8_t u8faucodelValue = Get_FaultCode_Value();
SEG_SET_Fault_Code(u8faucodeValid, u8faucodelValue, 0);
uint16_t u16faucodelValue = Get_FaultCode_Value();
SEG_SET_Fault_Code(u8faucodeValid, u16faucodelValue, 0);
}
void Clear_Bu98(void)
......
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