mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-23 11:09:28 -05:00
* Revert "Remove coroutines (#874)"
This reverts commit 569c78fd8c.
* Update freertos Kernel submodule to latest head
* Remove temporary files
* Fix MingW demos and spell check
* Fix manifest version; fix headers
* Add ignore files and paths to core-checker.py
* Fix copyright in remaining files
* Fix PR check build failure
1. Remove defining `inline` in Makefile. This was causing build
warnings.
2. Ensure that the linker removed unused functions from various
compilation units.
3. Update the linker script so that all the functions are correctly
placed in FLASH section.
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
---------
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
parent
9ccae851e7
commit
1277ba1661
605 changed files with 11240 additions and 3628 deletions
|
|
@ -42,7 +42,7 @@
|
|||
/*-----------------------------------------------------------*/
|
||||
|
||||
/*
|
||||
* Measure the time between this interrupt and the previous interrupt to
|
||||
* Measure the time between this interrupt and the previous interrupt to
|
||||
* calculate the timing jitter. Remember the maximum value the jitter has
|
||||
* ever been calculated to be.
|
||||
*/
|
||||
|
|
@ -71,7 +71,7 @@ void vSetupTimerTest( unsigned short usFrequencyHz )
|
|||
/* Timer 4 is going to free run from minimum to maximum value. */
|
||||
PR4 = ( unsigned short ) timerMAX_COUNT;
|
||||
|
||||
/* Setup timer 2 interrupt priority to be above the kernel priority so
|
||||
/* Setup timer 2 interrupt priority to be above the kernel priority so
|
||||
the timer jitter is not effected by the kernel activity. */
|
||||
IPC1bits.T2IP = configKERNEL_INTERRUPT_PRIORITY + 1;
|
||||
|
||||
|
|
@ -102,7 +102,7 @@ unsigned short usThisCount, usDifference;
|
|||
usDifference = usThisCount - usLastCount;
|
||||
|
||||
/* Store the difference in the timer values if it is larger than the
|
||||
currently stored largest value. The difference over and above the
|
||||
currently stored largest value. The difference over and above the
|
||||
expected difference will give the 'jitter' in the processing of these
|
||||
interrupts. */
|
||||
if( usDifference > usMaxJitter )
|
||||
|
|
@ -112,7 +112,7 @@ unsigned short usThisCount, usDifference;
|
|||
}
|
||||
else
|
||||
{
|
||||
/* Don't bother storing any values for the first couple of
|
||||
/* Don't bother storing any values for the first couple of
|
||||
interrupts. */
|
||||
usSettleCount++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue