Update the RX MDK demo to include the web server. Minor tidy up to the RDK version too.

This commit is contained in:
Richard Barry 2010-09-09 16:26:42 +00:00
parent 2fca46e3e4
commit 23ca0009e3
37 changed files with 6883 additions and 391 deletions

View file

@ -83,6 +83,10 @@ static void prvTimer2IntHandler( void );
/* Stores the value of the maximum recorded jitter between interrupts. */
volatile unsigned short usMaxJitter = 0;
/* Counts the number of high frequency interrupts - used to generate the run
time stats. */
volatile unsigned long ulHighFrequencyTickCount = 0UL;
/*-----------------------------------------------------------*/
void vSetupHighFrequencyTimer( void )
@ -146,7 +150,10 @@ static unsigned long ulErrorCount = 0UL;
usMaxCount = usCurrentCount;
}
/* Used to generate the run time stats. */
ulHighFrequencyTickCount++;
/* Clear the timer. */
timerTIMER_3_COUNT_VALUE = 0;