mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-01 11:53:53 -04:00
Continue to tidy up Fujitsu ports.
This commit is contained in:
parent
c6965bc253
commit
f315c91f38
13 changed files with 439 additions and 652 deletions
|
@ -9,7 +9,7 @@
|
|||
- Interrupt vector definition
|
||||
-----------------------------------------------------------------------------*/
|
||||
#include "mb96348hs.h"
|
||||
#include "config.h"
|
||||
#include "FreeRTOSConfig.h"
|
||||
|
||||
/*---------------------------------------------------------------------------
|
||||
InitIrqLevels()
|
||||
|
@ -33,16 +33,14 @@ volatile int irq;
|
|||
ICR = ( irq << 8 ) | DEFAULT_ILM_MASK;
|
||||
}
|
||||
|
||||
ICR = ( (51 & 0xFF) << 8 ) | ( DEFAULT_ILM_MASK - 1 ); /* Reload Timer 0 of MB9634x Series */
|
||||
ICR = ( (12 & 0xFF) << 8 ) | ( DEFAULT_ILM_MASK - 1 ); /* Delayed interrupt of 16FX Family */
|
||||
ICR = ( (51 & 0xFF) << 8 ) | configKERNEL_INTERRUPT_PRIORITY; /* Reload Timer 0 of MB9634x Series */
|
||||
ICR = ( (12 & 0xFF) << 8 ) | configKERNEL_INTERRUPT_PRIORITY; /* Delayed interrupt of 16FX Family */
|
||||
|
||||
#if ( INCLUDE_AltStartComTestTasks == 1 )
|
||||
ICR = ( 79 << 8 ) | ( DEFAULT_ILM_MASK - 1 ); /* UART 0 Rx of MB9634x Series */
|
||||
ICR = ( 80 << 8 ) | ( DEFAULT_ILM_MASK - 1 ); /* UART 0 Tx of MB9634x Series */
|
||||
#endif
|
||||
ICR = ( 79 << 8 ) | configKERNEL_INTERRUPT_PRIORITY; /* UART 0 Rx of MB9634x Series */
|
||||
ICR = ( 80 << 8 ) | configKERNEL_INTERRUPT_PRIORITY; /* UART 0 Tx of MB9634x Series */
|
||||
|
||||
#if ( INCLUDE_TraceListTasks == 1 )
|
||||
ICR = ( 81 << 8 ) | ( DEFAULT_ILM_MASK - 1 ); /* UART 1 Rx of MB9634x Series */
|
||||
ICR = ( 81 << 8 ) | configKERNEL_INTERRUPT_PRIORITY; /* UART 1 Rx of MB9634x Series */
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue