mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-04 21:33:52 -04:00
Updated compiler version for RX RDK demo and completed initial web server demo. Still some tidying up to do.
This commit is contained in:
parent
a4893aed60
commit
a91ec6efe7
17 changed files with 4241 additions and 4683 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue