The official mbed C/C SDK provides the software platform and libraries to build your applications.

Fork of mbed by mbed official

Committer:
Mikchel
Date:
Sun May 03 16:04:42 2015 +0000
Revision:
99:7f6c6de930c0
Parent:
89:552587b429a1
12

Who changed what in which revision?

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