[components][drivers] delete redundant judgment

This commit is contained in:
zylx 2018-12-13 09:59:07 +08:00
parent f497b17111
commit 6ea32ee488
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ rt_inline rt_uint32_t timeout_calc(rt_hwtimer_t *timer, rt_hwtimerval_t *tv)
{
timeout = tv_sec/i;
if (timeout <= overflow && timeout * timer->freq <= timer->info->maxcnt)
if (timeout <= overflow)
{
counter = timeout*timer->freq;
devi = tv_sec - (counter/(float)timer->freq)*i;