diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-08-20 12:33:49 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-08-20 12:33:49 +0000 |
commit | abbc1097778c5718dd314af045f40b037ccb4cb5 (patch) | |
tree | bfc682e218ca81dbe5d2ab4d573a75b942d8f6fd /os/hal/platforms/STM32F0xx/hal_lld.c | |
parent | 3e25612cb510bc0518b1748e4dfb820bb5470d8b (diff) | |
download | ChibiOS-abbc1097778c5718dd314af045f40b037ccb4cb5.tar.gz ChibiOS-abbc1097778c5718dd314af045f40b037ccb4cb5.tar.bz2 ChibiOS-abbc1097778c5718dd314af045f40b037ccb4cb5.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6188 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32F0xx/hal_lld.c')
-rw-r--r-- | os/hal/platforms/STM32F0xx/hal_lld.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/os/hal/platforms/STM32F0xx/hal_lld.c b/os/hal/platforms/STM32F0xx/hal_lld.c index debc51ea3..09ab62923 100644 --- a/os/hal/platforms/STM32F0xx/hal_lld.c +++ b/os/hal/platforms/STM32F0xx/hal_lld.c @@ -22,7 +22,6 @@ * @{
*/
-#include "ch.h"
#include "hal.h"
/*===========================================================================*/
@@ -103,13 +102,6 @@ void hal_lld_init(void) { rccResetAPB1(0xFFFFFFFF);
rccResetAPB2(~RCC_APB2RSTR_DBGMCURST);
- /* SysTick initialization using the system clock.*/
- SysTick->LOAD = STM32_HCLK / CH_FREQUENCY - 1;
- SysTick->VAL = 0;
- SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk |
- SysTick_CTRL_ENABLE_Msk |
- SysTick_CTRL_TICKINT_Msk;
-
/* PWR clock enabled.*/
rccEnablePWRInterface(FALSE);
|