Continue work on the SmartFusion demo web interface. The uIP task has been updated to use software timers, and the mac interface updated to use vTaskDelay() in place of busy waits.

This commit is contained in:
Richard Barry 2011-04-17 14:38:50 +00:00
parent e659759671
commit 9c6a0e4e69
4 changed files with 204 additions and 59 deletions

View file

@ -445,10 +445,6 @@ static void prvSetupHardware( void )
NVIC_EnableIRQ( GPIO8_IRQn );
MSS_GPIO_config( MSS_GPIO_8, MSS_GPIO_INPUT_MODE | MSS_GPIO_IRQ_EDGE_NEGATIVE );
MSS_GPIO_enable_irq( MSS_GPIO_8 );
/* Setup the EMAC and the NVIC for MAC interrupts. */
NVIC_SetPriority( EthernetMAC_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );
NVIC_EnableIRQ( EthernetMAC_IRQn );
}
/*-----------------------------------------------------------*/