tim.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**
  2. ******************************************************************************
  3. * File Name : TIM.c
  4. * Description : This file provides code for the configuration
  5. * of the TIM instances.
  6. ******************************************************************************
  7. *
  8. * COPYRIGHT(c) 2016 STMicroelectronics
  9. *
  10. * Redistribution and use in source and binary forms, with or without modification,
  11. * are permitted provided that the following conditions are met:
  12. * 1. Redistributions of source code must retain the above copyright notice,
  13. * this list of conditions and the following disclaimer.
  14. * 2. Redistributions in binary form must reproduce the above copyright notice,
  15. * this list of conditions and the following disclaimer in the documentation
  16. * and/or other materials provided with the distribution.
  17. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  18. * may be used to endorse or promote products derived from this software
  19. * without specific prior written permission.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  22. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  24. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  25. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  27. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  28. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. *
  32. ******************************************************************************
  33. */
  34. /* Includes ------------------------------------------------------------------*/
  35. #include "tim.h"
  36. /* USER CODE BEGIN 0 */
  37. /* USER CODE END 0 */
  38. TIM_HandleTypeDef htim6;
  39. /* TIM6 init function */
  40. void MX_TIM6_Init(void)
  41. {
  42. htim6.Instance = TIM6;
  43. htim6.Init.Prescaler = 0;
  44. htim6.Init.CounterMode = TIM_COUNTERMODE_UP;
  45. htim6.Init.Period = 0;
  46. HAL_TIM_Base_Init(&htim6);
  47. }
  48. void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* htim_base)
  49. {
  50. if(htim_base->Instance==TIM6)
  51. {
  52. /* USER CODE BEGIN TIM6_MspInit 0 */
  53. /* USER CODE END TIM6_MspInit 0 */
  54. /* Peripheral clock enable */
  55. __TIM6_CLK_ENABLE();
  56. /* USER CODE BEGIN TIM6_MspInit 1 */
  57. /* USER CODE END TIM6_MspInit 1 */
  58. }
  59. }
  60. void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* htim_base)
  61. {
  62. if(htim_base->Instance==TIM6)
  63. {
  64. /* USER CODE BEGIN TIM6_MspDeInit 0 */
  65. /* USER CODE END TIM6_MspDeInit 0 */
  66. /* Peripheral clock disable */
  67. __TIM6_CLK_DISABLE();
  68. }
  69. /* USER CODE BEGIN TIM6_MspDeInit 1 */
  70. /* USER CODE END TIM6_MspDeInit 1 */
  71. }
  72. /* USER CODE BEGIN 1 */
  73. /* USER CODE END 1 */
  74. /**
  75. * @}
  76. */
  77. /**
  78. * @}
  79. */
  80. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/