Explorar o código

[components][drivers] delete redundant judgment

zylx %!s(int64=6) %!d(string=hai) anos
pai
achega
6ea32ee488
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      components/drivers/hwtimer/hwtimer.c

+ 1 - 1
components/drivers/hwtimer/hwtimer.c

@@ -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;