mirror of https://github.com/RT-Thread/rt-thread
bsp/renesas: fix the problem of abnormal timer count
This commit is contained in:
parent
a1e865171b
commit
fcd0b1e679
|
@ -115,11 +115,11 @@ static rt_uint32_t timer_counter_get(rt_hwtimer_t *timer)
|
|||
|
||||
tim = (struct ra_hwtimer *)timer->parent.user_data;
|
||||
|
||||
timer_info_t info;
|
||||
if (R_GPT_InfoGet(tim->g_ctrl, &info) != FSP_SUCCESS)
|
||||
timer_status_t status;
|
||||
if (R_GPT_StatusGet(tim->g_ctrl, &status) != FSP_SUCCESS)
|
||||
return -RT_ERROR;
|
||||
|
||||
return info.period_counts;
|
||||
return status.counter;
|
||||
}
|
||||
|
||||
static rt_err_t timer_ctrl(rt_hwtimer_t *timer, rt_uint32_t cmd, void *arg)
|
||||
|
|
Loading…
Reference in New Issue