Make the timer used for the PIC32 port layer user configurable.

This commit is contained in:
Richard Barry 2012-10-16 09:48:45 +00:00
parent dbe0ae2bff
commit f446f77fd4
2 changed files with 19 additions and 9 deletions

View file

@ -79,16 +79,16 @@
.global vPortStartFirstTask
.global vPortYieldISR
.global vT1InterruptHandler
.global vPortTickInterruptHandler
/******************************************************************/
.set noreorder
.set noat
.ent vT1InterruptHandler
.ent vPortTickInterruptHandler
vT1InterruptHandler:
vPortTickInterruptHandler:
portSAVE_CONTEXT
@ -97,7 +97,7 @@ vT1InterruptHandler:
portRESTORE_CONTEXT
.end vT1InterruptHandler
.end vPortTickInterruptHandler
/******************************************************************/