mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-02 04:13:54 -04:00
Tidy up the IAR SmartFusion demo reading for release.
This commit is contained in:
parent
f6879be327
commit
f155921461
7 changed files with 300 additions and 20 deletions
|
@ -308,6 +308,8 @@ unsigned long ulReceivedValue;
|
|||
|
||||
static void prvSetupHardware( void )
|
||||
{
|
||||
SystemCoreClockUpdate();
|
||||
|
||||
/* Disable the Watch Dog Timer */
|
||||
MSS_WD_disable( );
|
||||
|
||||
|
@ -376,4 +378,21 @@ volatile size_t xFreeStackSpace;
|
|||
reduced accordingly. */
|
||||
}
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void vMainConfigureTimerForRunTimeStats( void )
|
||||
{
|
||||
/* This function is not used by the Blinky build configuration, but needs
|
||||
to be defined as the Blinky and Full build configurations share a
|
||||
FreeRTOSConfig.h header file. */
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
unsigned long ulGetRunTimeCounterValue( void )
|
||||
{
|
||||
/* This function is not used by the Blinky build configuration, but needs
|
||||
to be defined as the Blinky and Full build configurations share a
|
||||
FreeRTOSConfig.h header file. */
|
||||
return 0UL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue