main.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file : main.c
  5. * @brief : Main program body
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2025 STMicroelectronics.
  10. * All rights reserved.
  11. *
  12. * This software is licensed under terms that can be found in the LICENSE file
  13. * in the root directory of this software component.
  14. * If no LICENSE file comes with this software, it is provided AS-IS.
  15. *
  16. ******************************************************************************
  17. */
  18. /* USER CODE END Header */
  19. /* Includes ------------------------------------------------------------------*/
  20. #include "main.h"
  21. #include "cmsis_os.h"
  22. #include "can.h"
  23. #include "dma.h"
  24. #include "iwdg.h"
  25. #include "tim.h"
  26. #include "usart.h"
  27. #include "gpio.h"
  28. /* Private includes ----------------------------------------------------------*/
  29. /* USER CODE BEGIN Includes */
  30. #include "CAT_LOG.h"
  31. /* USER CODE END Includes */
  32. /* Private typedef -----------------------------------------------------------*/
  33. /* USER CODE BEGIN PTD */
  34. /* USER CODE END PTD */
  35. /* Private define ------------------------------------------------------------*/
  36. /* USER CODE BEGIN PD */
  37. /* USER CODE END PD */
  38. /* Private macro -------------------------------------------------------------*/
  39. /* USER CODE BEGIN PM */
  40. /* USER CODE END PM */
  41. /* Private variables ---------------------------------------------------------*/
  42. /* USER CODE BEGIN PV */
  43. /* USER CODE END PV */
  44. /* Private function prototypes -----------------------------------------------*/
  45. void SystemClock_Config(void);
  46. void MX_FREERTOS_Init(void);
  47. /* USER CODE BEGIN PFP */
  48. /* USER CODE END PFP */
  49. /* Private user code ---------------------------------------------------------*/
  50. /* USER CODE BEGIN 0 */
  51. /* USER CODE END 0 */
  52. /**
  53. * @brief The application entry point.
  54. * @retval int
  55. */
  56. int main(void)
  57. {
  58. /* USER CODE BEGIN 1 */
  59. SEGGER_RTT_Init(); // ³õʼ»¯SEGGER RTT
  60. /* USER CODE END 1 */
  61. /* MCU Configuration--------------------------------------------------------*/
  62. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  63. HAL_Init();
  64. /* USER CODE BEGIN Init */
  65. /* USER CODE END Init */
  66. /* Configure the system clock */
  67. SystemClock_Config();
  68. /* USER CODE BEGIN SysInit */
  69. /* USER CODE END SysInit */
  70. /* Initialize all configured peripherals */
  71. MX_GPIO_Init();
  72. MX_DMA_Init();
  73. // MX_CAN1_Init();
  74. // MX_CAN2_Init();
  75. // MX_IWDG_Init();
  76. // MX_TIM9_Init();
  77. MX_USART1_UART_Init();
  78. MX_USART3_UART_Init();
  79. MX_TIM4_Init();
  80. MX_TIM3_Init();
  81. /* USER CODE BEGIN 2 */
  82. MX_CAN_Init(CAN500kBaud,CAN500kBaud);
  83. HAL_TIM_Start(); //¿ªÆôpw
  84. //HAL_Delay(500);//ÑÓʱ5sÆô¶¯
  85. BEED_DiDi();
  86. /* USER CODE END 2 */
  87. /* Init scheduler */
  88. osKernelInitialize(); /* Call init function for freertos objects (in freertos.c) */
  89. MX_FREERTOS_Init();
  90. /* Start scheduler */
  91. osKernelStart();
  92. /* We should never get here as control is now taken by the scheduler */
  93. /* Infinite loop */
  94. /* USER CODE BEGIN WHILE */
  95. while (1)
  96. {
  97. /* USER CODE END WHILE */
  98. /* USER CODE BEGIN 3 */
  99. }
  100. /* USER CODE END 3 */
  101. }
  102. /**
  103. * @brief System Clock Configuration
  104. * @retval None
  105. */
  106. void SystemClock_Config(void)
  107. {
  108. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  109. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  110. /** Configure the main internal regulator output voltage
  111. */
  112. __HAL_RCC_PWR_CLK_ENABLE();
  113. __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
  114. /** Initializes the RCC Oscillators according to the specified parameters
  115. * in the RCC_OscInitTypeDef structure.
  116. */
  117. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  118. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  119. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  120. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  121. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  122. RCC_OscInitStruct.PLL.PLLM = 4;
  123. RCC_OscInitStruct.PLL.PLLN = 168;
  124. RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
  125. RCC_OscInitStruct.PLL.PLLQ = 4;
  126. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  127. {
  128. Error_Handler();
  129. }
  130. /** Initializes the CPU, AHB and APB buses clocks
  131. */
  132. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  133. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  134. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  135. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  136. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
  137. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
  138. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5) != HAL_OK)
  139. {
  140. Error_Handler();
  141. }
  142. }
  143. /* USER CODE BEGIN 4 */
  144. /* USER CODE END 4 */
  145. /**
  146. * @brief Period elapsed callback in non blocking mode
  147. * @note This function is called when TIM6 interrupt took place, inside
  148. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  149. * a global variable "uwTick" used as application time base.
  150. * @param htim : TIM handle
  151. * @retval None
  152. */
  153. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  154. {
  155. /* USER CODE BEGIN Callback 0 */
  156. /* USER CODE END Callback 0 */
  157. if (htim->Instance == TIM6) {
  158. HAL_IncTick();
  159. }
  160. /* USER CODE BEGIN Callback 1 */
  161. /* USER CODE END Callback 1 */
  162. }
  163. /**
  164. * @brief This function is executed in case of error occurrence.
  165. * @retval None
  166. */
  167. void Error_Handler(void)
  168. {
  169. /* USER CODE BEGIN Error_Handler_Debug */
  170. /* User can add his own implementation to report the HAL error return state */
  171. __disable_irq();
  172. while (1)
  173. {
  174. }
  175. /* USER CODE END Error_Handler_Debug */
  176. }
  177. #ifdef USE_FULL_ASSERT
  178. /**
  179. * @brief Reports the name of the source file and the source line number
  180. * where the assert_param error has occurred.
  181. * @param file: pointer to the source file name
  182. * @param line: assert_param error line source number
  183. * @retval None
  184. */
  185. void assert_failed(uint8_t *file, uint32_t line)
  186. {
  187. /* USER CODE BEGIN 6 */
  188. /* User can add his own implementation to report the file name and line number,
  189. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  190. /* USER CODE END 6 */
  191. }
  192. #endif /* USE_FULL_ASSERT */