mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-30 23:18:37 -04:00
MicroBlaze demo now building with lwIP included - but will not link until the Ethernetif file is implemented.
This commit is contained in:
parent
12a722bf36
commit
a176b54de5
13 changed files with 117 additions and 184 deletions
|
@ -573,3 +573,30 @@ static void prvSetupHardware( void )
|
|||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void vMainConfigureTimerForRunTimeStats( void )
|
||||
{
|
||||
unsigned long ulRunTimeStatsDivisor;
|
||||
|
||||
/* How many times does the counter counter increment in 10ms? */
|
||||
ulRunTimeStatsDivisor = 0UL / 1000UL; //_RB_
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
unsigned long ulMainGetRunTimeCounterValue( void )
|
||||
{
|
||||
unsigned long ulReturn, ulCurrentCount;
|
||||
|
||||
ulCurrentCount = 0UL;
|
||||
ulReturn = 0UL;
|
||||
|
||||
return ulReturn;
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
char *pcMainGetTaskStatusMessage( void )
|
||||
{
|
||||
return ( char * ) pcStatusMessage;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue