Update headers for the FreeRTOS V7.0.2 release.
diff --git a/Source/timers.c b/Source/timers.c
index 5725655..95ee47b 100644
--- a/Source/timers.c
+++ b/Source/timers.c
@@ -1,12 +1,6 @@
 /*

-    FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.

-	

+    FreeRTOS V7.0.2 - Copyright (C) 2011 Real Time Engineers Ltd.

 

-	FreeRTOS supports many tools and architectures. V7.0.0 is sponsored by:

-	Atollic AB - Atollic provides professional embedded systems development 

-	tools for C/C++ development, code analysis and test automation.  

-	See http://www.atollic.com

-	

 

     ***************************************************************************

      *                                                                       *

@@ -110,7 +104,7 @@
 /* A queue that is used to send commands to the timer service task. */

 PRIVILEGED_DATA static xQueueHandle xTimerQueue = NULL;

 

-#if ( INCLUDE_xTimerDaemonTaskHandleGet == 1 )

+#if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )

 	

 	PRIVILEGED_DATA static xTaskHandle xTimerTaskHandle = NULL;

 	

@@ -189,10 +183,10 @@
 

 	if( xTimerQueue != NULL )

 	{

-		#if ( INCLUDE_xTimerDaemonTaskHandleGet == 1 )

+		#if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )

 		{

 			/* Create the timer task, storing its handle in xTimerTaskHandle so

-			it can be returned by the xTimerDaemonTaskHandleGet() function. */

+			it can be returned by the xTimerGetTimerDaemonTaskHandle() function. */

 			xReturn = xTaskCreate( prvTimerTask, ( const signed char * ) "Tmr Svc", ( unsigned short ) configTIMER_TASK_STACK_DEPTH, NULL, ( unsigned portBASE_TYPE ) configTIMER_TASK_PRIORITY, &xTimerTaskHandle );	

 		}

 		#else

@@ -284,11 +278,11 @@
 }

 /*-----------------------------------------------------------*/

 

-#if ( INCLUDE_xTimerDaemonTaskHandleGet == 1 )

+#if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )

 

-	xTaskHandle xTimerDaemonTaskHandleGet( void )

+	xTaskHandle xTimerGetTimerDaemonTaskHandle( void )

 	{

-		/* If xTimerDaemonTaskHandleGet() is called before the scheduler has been

+		/* If xTimerGetTimerDaemonTaskHandle() is called before the scheduler has been

 		started, then xTimerTaskHandle will be NULL. */

 		configASSERT( ( xTimerTaskHandle != NULL ) );

 		return xTimerTaskHandle;