summaryrefslogtreecommitdiff
path: root/FreeRTOS/Source/portable/IAR/ARM_CM3/port.c
diff options
context:
space:
mode:
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2019-12-27 21:22:07 +0000
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2019-12-27 21:22:07 +0000
commitcfbfd0cf5c971704e93f06916d56beca371d3924 (patch)
tree0ba578737210c0d64a4b22c4e38598ffe2777192 /FreeRTOS/Source/portable/IAR/ARM_CM3/port.c
parent56f24c9dc3ee2af70202ec1237dd9b7f2f1ba804 (diff)
downloadfreertos-cfbfd0cf5c971704e93f06916d56beca371d3924.tar.gz
Tidy up comments only.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2777 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Source/portable/IAR/ARM_CM3/port.c')
-rw-r--r--FreeRTOS/Source/portable/IAR/ARM_CM3/port.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/FreeRTOS/Source/portable/IAR/ARM_CM3/port.c b/FreeRTOS/Source/portable/IAR/ARM_CM3/port.c
index 486f61447..c8f2a59fb 100644
--- a/FreeRTOS/Source/portable/IAR/ARM_CM3/port.c
+++ b/FreeRTOS/Source/portable/IAR/ARM_CM3/port.c
@@ -439,13 +439,13 @@ void xPortSysTickHandler( void )
__disable_interrupt();
__DSB();
__ISB();
-
- /* Disable the SysTick clock without reading the
+
+ /* Disable the SysTick clock without reading the
portNVIC_SYSTICK_CTRL_REG register to ensure the
- portNVIC_SYSTICK_COUNT_FLAG_BIT is not cleared if it is set. Again,
- the time the SysTick is stopped for is accounted for as best it can
- be, but using the tickless mode will inevitably result in some tiny
- drift of the time maintained by the kernel with respect to calendar
+ portNVIC_SYSTICK_COUNT_FLAG_BIT is not cleared if it is set. Again,
+ the time the SysTick is stopped for is accounted for as best it can
+ be, but using the tickless mode will inevitably result in some tiny
+ drift of the time maintained by the kernel with respect to calendar
time*/
portNVIC_SYSTICK_CTRL_REG = ( portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT );