X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Ftimer.h;h=c2648daf56bb2d775a0686389adf1d208f0002d3;hb=21b3b0c37366068ae6247c15f30505c055e473a5;hp=1c361fffe580d20778bff2277ab9708912c67bd3;hpb=bcf38f772b397e7a8ba781a69aacb9380e54b32a;p=bertos.git diff --git a/drv/timer.h b/drv/timer.h old mode 100755 new mode 100644 index 1c361fff..c2648daf --- a/drv/timer.h +++ b/drv/timer.h @@ -1,9 +1,34 @@ /** * \file * * * \version $Id$ @@ -15,6 +40,12 @@ /*#* *#* $Log$ + *#* Revision 1.33 2007/06/07 14:35:12 batt + *#* Merge from project_ks. + *#* + *#* Revision 1.32 2007/01/09 08:57:19 bernie + *#* Remove excess parentheses. + *#* *#* Revision 1.31 2006/07/19 12:56:26 bernie *#* Convert to new Doxygen style. *#* @@ -163,7 +194,7 @@ INLINE ticks_t timer_clock(void) * interrupt is disabled (DISABLE_INTS) or overridden by a * higher-priority or non-nesting interrupt. * - * \sa timer_ticks + * \sa timer_clock */ INLINE ticks_t timer_clock_unlocked(void) { @@ -222,9 +253,9 @@ INLINE utime_t ticks_to_us(ticks_t ticks) INLINE hptime_t us_to_hptime(utime_t us) { #if TIMER_HW_HPTICKS_PER_SEC > 10000000UL - return(us * ((TIMER_HW_HPTICKS_PER_SEC + 500000UL) / 1000000UL)); + return us * ((TIMER_HW_HPTICKS_PER_SEC + 500000UL) / 1000000UL); #else - return((us * TIMER_HW_HPTICKS_PER_SEC + 500000UL) / 1000000UL); + return (us * TIMER_HW_HPTICKS_PER_SEC + 500000UL) / 1000000UL; #endif } @@ -232,9 +263,9 @@ INLINE hptime_t us_to_hptime(utime_t us) INLINE utime_t hptime_to_us(hptime_t hpticks) { #if TIMER_HW_HPTICKS_PER_SEC < 100000UL - return(hpticks * (1000000UL / TIMER_HW_HPTICKS_PER_SEC)); + return hpticks * (1000000UL / TIMER_HW_HPTICKS_PER_SEC); #else - return((hpticks * 1000000UL) / TIMER_HW_HPTICKS_PER_SEC); + return (hpticks * 1000000UL) / TIMER_HW_HPTICKS_PER_SEC; #endif /* TIMER_HW_HPTICKS_PER_SEC < 100000UL */ }