Add in web server to RX/IAR demo application.

This commit is contained in:
Richard Barry 2010-09-12 20:56:04 +00:00
parent c7fbe1d601
commit 9c3e8b0228
28 changed files with 6562 additions and 156 deletions

View file

@ -83,6 +83,10 @@ __interrupt void vTimer2IntHandler( 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 )
@ -147,6 +151,9 @@ static unsigned long ulErrorCount = 0UL;
usMaxCount = usCurrentCount;
}
/* Used to generate the run time stats. */
ulHighFrequencyTickCount++;
/* Clear the timer. */
timerTIMER_3_COUNT_VALUE = 0;