aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32/hal_lld.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-03-28 10:27:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-03-28 10:27:46 +0000
commitc6bc9ad95152f851fd4527f40dd5f2695cd286ec (patch)
tree79579cf11db2cb666e8a654c0468a63124347b3c /os/hal/platforms/STM32/hal_lld.c
parent347b801809d0c9c30c046d3a60277d05b1c8d86c (diff)
downloadChibiOS-c6bc9ad95152f851fd4527f40dd5f2695cd286ec.tar.gz
ChibiOS-c6bc9ad95152f851fd4527f40dd5f2695cd286ec.tar.bz2
ChibiOS-c6bc9ad95152f851fd4527f40dd5f2695cd286ec.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1798 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/hal_lld.c')
-rw-r--r--os/hal/platforms/STM32/hal_lld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/hal_lld.c b/os/hal/platforms/STM32/hal_lld.c
index c98de5104..b28795ad9 100644
--- a/os/hal/platforms/STM32/hal_lld.c
+++ b/os/hal/platforms/STM32/hal_lld.c
@@ -80,7 +80,7 @@ void hal_lld_init(void) {
NVICSetSystemHandlerPriority(HANDLER_SYSTICK, CORTEX_PRIORITY_SYSTICK);
NVICSetSystemHandlerPriority(HANDLER_PENDSV, CORTEX_PRIORITY_PENDSV);
- /* Systick initialization using the system clock.*/
+ /* SysTick initialization using the system clock.*/
SysTick->LOAD = SYSCLK / CH_FREQUENCY - 1;
SysTick->VAL = 0;
SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk |