CONFIG_TIMER_STROBE: be tolerant with missing optional macro.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 6 Sep 2004 21:49:26 +0000 (21:49 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 6 Sep 2004 21:49:26 +0000 (21:49 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@189 38d2e660-2303-0410-9eaa-f027e97ec537

drv/timer_avr.h

index 82166d3eb226afb0d6aaa88e611e0bbf32e13493..2cfb016aeb11c9bd2dc0d6efd9e05aba1804f604 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.16  2004/09/06 21:49:26  bernie
+ *#* CONFIG_TIMER_STROBE: be tolerant with missing optional macro.
+ *#*
  *#* Revision 1.15  2004/08/25 14:12:08  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -69,7 +72,7 @@
  * TIMER_STROBE_OFF and TIMER_STROBE_INIT and set
  * CONFIG_TIMER_STROBE to 1.
  */
-#ifndef CONFIG_TIMER_STROBE
+#if !defined(CONFIG_TIMER_STROBE) || !CONFIG_TIMER_STROBE
        #define TIMER_STROBE_ON    do {/*nop*/} while(0)
        #define TIMER_STROBE_OFF   do {/*nop*/} while(0)
        #define TIMER_STROBE_INIT  do {/*nop*/} while(0)