Continue work on MicroBlaze port - still very much a work in progress.

This commit is contained in:
Richard Barry 2011-06-03 09:01:21 +00:00
parent 67039f6065
commit 1e5830a157
4 changed files with 69 additions and 16 deletions

View file

@ -380,7 +380,7 @@ void vApplicationSetupTimerInterrupt( void )
{
portBASE_TYPE xStatus;
const unsigned char ucTimerCounterNumber = ( unsigned char ) 0U;
const unsigned long ulCounterValue = ( ( configCPU_CLOCK_HZ / configTICK_RATE_HZ ) + 1UL );
const unsigned long ulCounterValue = ( ( XPAR_AXI_TIMER_0_CLOCK_FREQ_HZ / configTICK_RATE_HZ ) - 1UL );
extern void vTickISR( void *pvUnused );
/* Initialise the timer/counter. */