mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 17:48:33 -04:00
Add in interrupt nesting and chache support.
This commit is contained in:
parent
60da4247dd
commit
bfdbfce22f
6 changed files with 181 additions and 6 deletions
|
@ -125,7 +125,7 @@ const unsigned portLONG ulBaudRateDivisor = ( configCPU_CLOCK_HZ / ( 32UL * ulWa
|
|||
|
||||
/* Configure the interrupt controller. Run the UARTs above the kernel
|
||||
interrupt priority for demo purposes. */
|
||||
MCF_INTC0_ICR14 = ( ( configKERNEL_INTERRUPT_PRIORITY + 1 ) | ( 1 << 3 ) );
|
||||
MCF_INTC0_ICR14 = ( ( configMAX_SYSCALL_INTERRUPT_PRIORITY - 2 ) << 3 );
|
||||
MCF_INTC0_IMRL &= ~( MCF_INTC_IMRL_INT_MASK14 | 0x01 );
|
||||
|
||||
/* The Tx interrupt is not enabled until there is data to send. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue