mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Fri Sep 15 14:59:18 2017 +0100
Revision:
173:e131a1973e81
Parent:
167:e84263d55307
Child:
186:707f6e361f3e
This updates the lib to the mbed lib v 151

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 153:fa9ff456f731 1 /**
<> 153:fa9ff456f731 2 ******************************************************************************
<> 153:fa9ff456f731 3 * @file hal_tick.h
<> 153:fa9ff456f731 4 * @author MCD Application Team
<> 153:fa9ff456f731 5 * @brief Initialization of HAL tick
<> 153:fa9ff456f731 6 ******************************************************************************
<> 153:fa9ff456f731 7 * @attention
<> 153:fa9ff456f731 8 *
<> 153:fa9ff456f731 9 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
<> 153:fa9ff456f731 10 *
<> 153:fa9ff456f731 11 * Redistribution and use in source and binary forms, with or without modification,
<> 153:fa9ff456f731 12 * are permitted provided that the following conditions are met:
<> 153:fa9ff456f731 13 * 1. Redistributions of source code must retain the above copyright notice,
<> 153:fa9ff456f731 14 * this list of conditions and the following disclaimer.
<> 153:fa9ff456f731 15 * 2. Redistributions in binary form must reproduce the above copyright notice,
<> 153:fa9ff456f731 16 * this list of conditions and the following disclaimer in the documentation
<> 153:fa9ff456f731 17 * and/or other materials provided with the distribution.
<> 153:fa9ff456f731 18 * 3. Neither the name of STMicroelectronics nor the names of its contributors
<> 153:fa9ff456f731 19 * may be used to endorse or promote products derived from this software
<> 153:fa9ff456f731 20 * without specific prior written permission.
<> 153:fa9ff456f731 21 *
<> 153:fa9ff456f731 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
<> 153:fa9ff456f731 23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
<> 153:fa9ff456f731 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
<> 153:fa9ff456f731 25 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
<> 153:fa9ff456f731 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
<> 153:fa9ff456f731 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
<> 153:fa9ff456f731 28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
<> 153:fa9ff456f731 29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
<> 153:fa9ff456f731 30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
<> 153:fa9ff456f731 31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<> 153:fa9ff456f731 32 *
<> 153:fa9ff456f731 33 ******************************************************************************
<> 153:fa9ff456f731 34 */
<> 153:fa9ff456f731 35 #ifndef __HAL_TICK_H
<> 153:fa9ff456f731 36 #define __HAL_TICK_H
<> 153:fa9ff456f731 37
<> 153:fa9ff456f731 38 #ifdef __cplusplus
<> 153:fa9ff456f731 39 extern "C" {
<> 153:fa9ff456f731 40 #endif
<> 153:fa9ff456f731 41
<> 153:fa9ff456f731 42 #include "stm32f4xx.h"
AnnaBridge 167:e84263d55307 43 #include "stm32f4xx_ll_tim.h"
<> 153:fa9ff456f731 44 #include "cmsis_nvic.h"
<> 153:fa9ff456f731 45
<> 153:fa9ff456f731 46 #define TIM_MST TIM5
<> 153:fa9ff456f731 47 #define TIM_MST_IRQ TIM5_IRQn
AnnaBridge 167:e84263d55307 48 #define TIM_MST_RCC __HAL_RCC_TIM5_CLK_ENABLE()
AnnaBridge 173:e131a1973e81 49 #define TIM_MST_DBGMCU_FREEZE __HAL_DBGMCU_FREEZE_TIM5()
<> 153:fa9ff456f731 50
AnnaBridge 167:e84263d55307 51 #define TIM_MST_RESET_ON __HAL_RCC_TIM5_FORCE_RESET()
AnnaBridge 167:e84263d55307 52 #define TIM_MST_RESET_OFF __HAL_RCC_TIM5_RELEASE_RESET()
<> 153:fa9ff456f731 53
<> 153:fa9ff456f731 54 #define TIM_MST_16BIT 0 // 1=16-bit timer, 0=32-bit timer
<> 153:fa9ff456f731 55
<> 153:fa9ff456f731 56 #define TIM_MST_PCLK 1 // Select the peripheral clock number (1 or 2)
<> 153:fa9ff456f731 57
<> 153:fa9ff456f731 58 #define HAL_TICK_DELAY (1000) // 1 ms
<> 153:fa9ff456f731 59
<> 153:fa9ff456f731 60 #ifdef __cplusplus
<> 153:fa9ff456f731 61 }
<> 153:fa9ff456f731 62 #endif
<> 153:fa9ff456f731 63
<> 153:fa9ff456f731 64 #endif // __HAL_TICK_H
<> 153:fa9ff456f731 65
<> 153:fa9ff456f731 66 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/