main.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /**
  2. ******************************************************************************
  3. * File Name : main.c
  4. * Description : Main program body
  5. ******************************************************************************
  6. *
  7. * COPYRIGHT(c) 2017 STMicroelectronics
  8. *
  9. * Redistribution and use in source and binary forms, with or without modification,
  10. * are permitted provided that the following conditions are met:
  11. * 1. Redistributions of source code must retain the above copyright notice,
  12. * this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright notice,
  14. * this list of conditions and the following disclaimer in the documentation
  15. * and/or other materials provided with the distribution.
  16. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  17. * may be used to endorse or promote products derived from this software
  18. * without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  21. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  23. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  24. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  26. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  27. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  28. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. *
  31. ******************************************************************************
  32. */
  33. /* Includes ------------------------------------------------------------------*/
  34. #include "main.h"
  35. #include "stm32f1xx_hal.h"
  36. #include "can.h"
  37. #include "gpio.h"
  38. #include "crc.h"
  39. #include "iwdg.h"
  40. /* USER CODE BEGIN Includes */
  41. #include "RefreshMenu.h"
  42. #include "Rom_check.h"
  43. //#include "flash_if.h"
  44. /* USER CODE END Includes */
  45. /* Private variables ---------------------------------------------------------*/
  46. /* USER CODE BEGIN PV */
  47. /* Private variables ---------------------------------------------------------*/
  48. /* USER CODE END PV */
  49. /* Private function prototypes -----------------------------------------------*/
  50. void SystemClock_Config(void);
  51. void Error_Handler(void);
  52. /* USER CODE BEGIN PFP */
  53. /* Private function prototypes -----------------------------------------------*/
  54. /* USER CODE END PFP */
  55. /* USER CODE BEGIN 0 */
  56. /* USER CODE END 0 */
  57. int main(void)
  58. {
  59. /* USER CODE BEGIN 1 */
  60. /* USER CODE END 1 */
  61. /* MCU Configuration----------------------------------------------------------*/
  62. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  63. HAL_Init();
  64. /* Configure the system clock */
  65. SystemClock_Config();
  66. /* Initialize all configured peripherals */
  67. MX_GPIO_Init();
  68. MX_CAN_Init();
  69. MX_CRC_Init();
  70. // MX_IWDG_Init();
  71. /* USER CODE BEGIN 2 */
  72. // RomCheck();
  73. User_Manu_Init();
  74. User_Main_Manu();
  75. /* USER CODE END 2 */
  76. /* Infinite loop */
  77. /* USER CODE BEGIN WHILE */
  78. while (1)
  79. {
  80. /* USER CODE END WHILE */
  81. /* USER CODE BEGIN 3 */
  82. }
  83. /* USER CODE END 3 */
  84. }
  85. /** System Clock Configuration
  86. */
  87. void SystemClock_Config(void)
  88. {
  89. RCC_OscInitTypeDef RCC_OscInitStruct;
  90. RCC_ClkInitTypeDef RCC_ClkInitStruct;
  91. /**Initializes the CPU, AHB and APB busses clocks
  92. */
  93. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  94. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  95. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  96. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  97. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  98. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  99. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  100. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  101. {
  102. Error_Handler();
  103. }
  104. /**Initializes the CPU, AHB and APB busses clocks
  105. */
  106. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  107. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  108. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  109. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  110. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  111. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  112. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  113. {
  114. Error_Handler();
  115. }
  116. /**Configure the Systick interrupt time
  117. */
  118. HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
  119. /**Configure the Systick
  120. */
  121. HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
  122. /* SysTick_IRQn interrupt configuration */
  123. HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
  124. }
  125. /* USER CODE BEGIN 4 */
  126. /* USER CODE END 4 */
  127. /**
  128. * @brief This function is executed in case of error occurrence.
  129. * @param None
  130. * @retval None
  131. */
  132. void Error_Handler(void)
  133. {
  134. /* USER CODE BEGIN Error_Handler */
  135. /* User can add his own implementation to report the HAL error return state */
  136. while(1)
  137. {
  138. __set_FAULTMASK(1);//¹Ø±ÕËùÓÐÖжÏ
  139. HAL_NVIC_SystemReset();
  140. }
  141. /* USER CODE END Error_Handler */
  142. }
  143. #ifdef USE_FULL_ASSERT
  144. /**
  145. * @brief Reports the name of the source file and the source line number
  146. * where the assert_param error has occurred.
  147. * @param file: pointer to the source file name
  148. * @param line: assert_param error line source number
  149. * @retval None
  150. */
  151. void assert_failed(uint8_t* file, uint32_t line)
  152. {
  153. /* USER CODE BEGIN 6 */
  154. /* User can add his own implementation to report the file name and line number,
  155. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  156. /* USER CODE END 6 */
  157. }
  158. #endif
  159. /**
  160. * @}
  161. */
  162. /**
  163. * @}
  164. */
  165. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/