Commit 4e6e3bbd authored by 陈家乐's avatar 陈家乐

🐞 fix:时间秒BCD码转二进制码

parent 4c00d131
......@@ -92,6 +92,7 @@ void Sys_100ms_Tasks(void)
RTE_RTC_Get_CounterValue(&counter_val);
counter_val.time.RTC_Hours = RTC_Bcd2ToByte(counter_val.time.RTC_Hours);
counter_val.time.RTC_Minutes = RTC_Bcd2ToByte(counter_val.time.RTC_Minutes);
counter_val.time.RTC_Seconds = RTC_Bcd2ToByte(counter_val.time.RTC_Seconds);
}
Service_Interval_Processing();
Fuel_Cal_Sevice(100u);
......
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