From 9b6f648efbb818d6cc2cc514edc79c0072c65c14 Mon Sep 17 00:00:00 2001 From: Jim Paris Date: Sat, 25 Sep 2010 17:15:55 -0400 Subject: [PATCH] Add macro to help compute TMR.ENBL values (useful when using #defined values to represent timers) --- lib/include/tmr.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/include/tmr.h b/lib/include/tmr.h index 54e9b27a2..011c6d18c 100644 --- a/lib/include/tmr.h +++ b/lib/include/tmr.h @@ -143,6 +143,12 @@ static volatile struct TMR_struct * const _TMR3 = (void *) (TMR3_BASE); #define TMR2 (*_TMR2) #define TMR3 (*_TMR3) +/* Used to compute which enable bit to set for a particular timer, e.g. + TMR0.ENBL |= TMR_ENABLE_BIT(TMR2); + Helpful when you're using macros to define timers +*/ +#define TMR_ENABLE_BIT(x) ((&(x) == &(TMR0)) ? 1 : (&(x) == &(TMR1)) ? 2 : (&(x) == &(TMR2)) ? 4 : (&(x) == &(TMR3)) ? 8 : 0) + #define TMR0_PIN GPIO_08 #define TMR1_PIN GPIO_09 #define TMR2_PIN GPIO_10