summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-03-28 16:43:36 +0100
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-03-28 16:43:36 +0100
commit312790f0afd4a6df6f9d730f245d4b0a7ee8e2cd (patch)
tree0fe5dbe55154f0b487c7b187c30995a6e35000f4
parent0f13b588ccd06260bcbe66de64edd525b1775d3d (diff)
downloadfreertos-312790f0afd4a6df6f9d730f245d4b0a7ee8e2cd.tar.gz
freertos-312790f0afd4a6df6f9d730f245d4b0a7ee8e2cd.tar.bz2
freertos-312790f0afd4a6df6f9d730f245d4b0a7ee8e2cd.tar.xz
Remove interrupt priority definition in PIC18_SDCC port
-rw-r--r--Source/portable/SDCC/PIC18/port.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/portable/SDCC/PIC18/port.c b/Source/portable/SDCC/PIC18/port.c
index a308a22c..3ca08ae7 100644
--- a/Source/portable/SDCC/PIC18/port.c
+++ b/Source/portable/SDCC/PIC18/port.c
@@ -277,7 +277,6 @@ static void prvSetupTimerInterrupt(void)
T0CONbits.PSA=1; /*Timer0 prescaler is not assigned*/
INTCONbits.TMR0IE=1; /*Timer0 interrupts are allowed*/
INTCONbits.TMR0IF=0; /*Timer0 interrupt flag cleared*/
- INTCON2bits.T0IP=0; /*TimerO has low priority interrupt*/
/*set TMR0L and TMR0H value*/
TMR0H=(unsigned portCHAR)((TMR0ReloadValue&(unsigned portSHORT)0xff00)>>8);