summaryrefslogtreecommitdiff
path: root/FreeRTOS/Source/portable/IAR/MSP430
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-06-06 16:31:15 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-06-06 16:31:15 +0000
commit298396b43c76080604893d7d6ca7d5db47a0bd2d (patch)
tree7931e3087cc12c10a22742470d4f75557254eaf6 /FreeRTOS/Source/portable/IAR/MSP430
parent2a989e4ba62747c366fa8fdacffe96da57a400ea (diff)
downloadfreertos-298396b43c76080604893d7d6ca7d5db47a0bd2d.tar.gz
Convert more ports to use xTaskIncrementTick() in place of vTaskIncrementTick().
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@1917 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Source/portable/IAR/MSP430')
-rw-r--r--FreeRTOS/Source/portable/IAR/MSP430/portext.s434
1 files changed, 2 insertions, 2 deletions
diff --git a/FreeRTOS/Source/portable/IAR/MSP430/portext.s43 b/FreeRTOS/Source/portable/IAR/MSP430/portext.s43
index d759c8613..5ed4f1723 100644
--- a/FreeRTOS/Source/portable/IAR/MSP430/portext.s43
+++ b/FreeRTOS/Source/portable/IAR/MSP430/portext.s43
@@ -74,7 +74,7 @@
#include "FreeRTOSConfig.h"
#include "portasm.h"
- IMPORT vTaskIncrementTick
+ IMPORT xTaskIncrementTick
IMPORT vTaskSwitchContext
IMPORT vPortSetupTimerInterrupt
@@ -95,7 +95,7 @@
vTickISR:
portSAVE_CONTEXT
- call #vTaskIncrementTick
+ call #xTaskIncrementTick
#if configUSE_PREEMPTION == 1
call #vTaskSwitchContext