]> git.sur5r.net Git - freertos/commitdiff
Add a #if ( configUSE_TIMERS ) conditional compilation constant in to allow the softw...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 31 Mar 2011 14:09:21 +0000 (14:09 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 31 Mar 2011 14:09:21 +0000 (14:09 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1335 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/timers.c

index bf25f8f93e101086869e9500961da6cca115d2e9..fc0a70984d970126dea768846f8dc4a501f3dd79 100644 (file)
@@ -63,6 +63,12 @@ task.h is included from an application file. */
 \r
 #undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE\r
 \r
+/* This entire source file will be skipped if the application is not configured\r
+to include software timer functionality.  This #if is closed at the very bottom\r
+of this file.  If you want to include software timer functionality then ensure \r
+configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */\r
+#if ( configUSE_TIMERS == 1 )\r
+\r
 /* Misc definitions. */\r
 #define tmrNO_DELAY            ( portTickType ) 0U\r
 \r
@@ -621,3 +627,7 @@ xTIMER *pxTimer = ( xTIMER * ) xTimer;
 }\r
 /*-----------------------------------------------------------*/\r
 \r
+/* This entire source file will be skipped if the application is not configured\r
+to include software timer functionality.  If you want to include software timer\r
+functionality then ensure configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */\r
+#endif /* configUSE_TIMERS == 1 */\r