mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-03 04:43:52 -04:00
Add in web server to RX/IAR demo application.
This commit is contained in:
parent
c7fbe1d601
commit
9c3e8b0228
28 changed files with 6562 additions and 156 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue