main.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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. /* Private includes ----------------------------------------------------------*/
  22. /* USER CODE BEGIN Includes */
  23. /* USER CODE END Includes */
  24. /* Private typedef -----------------------------------------------------------*/
  25. /* USER CODE BEGIN PTD */
  26. /* USER CODE END PTD */
  27. /* Private define ------------------------------------------------------------*/
  28. /* USER CODE BEGIN PD */
  29. /* USER CODE END PD */
  30. /* Private macro -------------------------------------------------------------*/
  31. /* USER CODE BEGIN PM */
  32. /* USER CODE END PM */
  33. /* Private variables ---------------------------------------------------------*/
  34. UART_HandleTypeDef huart1;
  35. /* USER CODE BEGIN PV */
  36. /* USER CODE END PV */
  37. /* Private function prototypes -----------------------------------------------*/
  38. void SystemClock_Config(void);
  39. static void MX_GPIO_Init(void);
  40. static void MX_USART1_UART_Init(void);
  41. /* USER CODE BEGIN PFP */
  42. /* USER CODE END PFP */
  43. /* Private user code ---------------------------------------------------------*/
  44. /* USER CODE BEGIN 0 */
  45. /* USER CODE END 0 */
  46. /**
  47. * @brief The application entry point.
  48. * @retval int
  49. */
  50. int main(void)
  51. {
  52. /* USER CODE BEGIN 1 */
  53. /* USER CODE END 1 */
  54. /* MCU Configuration--------------------------------------------------------*/
  55. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  56. HAL_Init();
  57. /* USER CODE BEGIN Init */
  58. /* USER CODE END Init */
  59. /* Configure the system clock */
  60. SystemClock_Config();
  61. /* USER CODE BEGIN SysInit */
  62. /* USER CODE END SysInit */
  63. /* Initialize all configured peripherals */
  64. MX_GPIO_Init();
  65. MX_USART1_UART_Init();
  66. /* USER CODE BEGIN 2 */
  67. /* USER CODE END 2 */
  68. /* Infinite loop */
  69. /* USER CODE BEGIN WHILE */
  70. while (1)
  71. {
  72. /* USER CODE END WHILE */
  73. /* USER CODE BEGIN 3 */
  74. }
  75. /* USER CODE END 3 */
  76. }
  77. /**
  78. * @brief System Clock Configuration
  79. * @retval None
  80. */
  81. void SystemClock_Config(void)
  82. {
  83. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  84. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  85. /** Configure the main internal regulator output voltage
  86. */
  87. __HAL_RCC_PWR_CLK_ENABLE();
  88. __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
  89. /** Initializes the RCC Oscillators according to the specified parameters
  90. * in the RCC_OscInitTypeDef structure.
  91. */
  92. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
  93. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  94. RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
  95. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  96. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
  97. RCC_OscInitStruct.PLL.PLLM = 8;
  98. RCC_OscInitStruct.PLL.PLLN = 168;
  99. RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
  100. RCC_OscInitStruct.PLL.PLLQ = 4;
  101. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  102. {
  103. Error_Handler();
  104. }
  105. /** Initializes the CPU, AHB and APB buses clocks
  106. */
  107. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK
  108. | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2;
  109. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  110. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  111. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
  112. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
  113. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5) != HAL_OK)
  114. {
  115. Error_Handler();
  116. }
  117. }
  118. /**
  119. * @brief USART1 Initialization Function
  120. * @param None
  121. * @retval None
  122. */
  123. static void MX_USART1_UART_Init(void)
  124. {
  125. /* USER CODE BEGIN USART1_Init 0 */
  126. /* USER CODE END USART1_Init 0 */
  127. /* USER CODE BEGIN USART1_Init 1 */
  128. /* USER CODE END USART1_Init 1 */
  129. huart1.Instance = USART1;
  130. huart1.Init.BaudRate = 115200;
  131. huart1.Init.WordLength = UART_WORDLENGTH_8B;
  132. huart1.Init.StopBits = UART_STOPBITS_1;
  133. huart1.Init.Parity = UART_PARITY_NONE;
  134. huart1.Init.Mode = UART_MODE_TX_RX;
  135. huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE;
  136. huart1.Init.OverSampling = UART_OVERSAMPLING_16;
  137. if (HAL_UART_Init(&huart1) != HAL_OK)
  138. {
  139. Error_Handler();
  140. }
  141. /* USER CODE BEGIN USART1_Init 2 */
  142. /* USER CODE END USART1_Init 2 */
  143. }
  144. /**
  145. * @brief GPIO Initialization Function
  146. * @param None
  147. * @retval None
  148. */
  149. static void MX_GPIO_Init(void)
  150. {
  151. /* USER CODE BEGIN MX_GPIO_Init_1 */
  152. /* USER CODE END MX_GPIO_Init_1 */
  153. /* GPIO Ports Clock Enable */
  154. __HAL_RCC_GPIOC_CLK_ENABLE();
  155. __HAL_RCC_GPIOH_CLK_ENABLE();
  156. __HAL_RCC_GPIOA_CLK_ENABLE();
  157. /* USER CODE BEGIN MX_GPIO_Init_2 */
  158. /* USER CODE END MX_GPIO_Init_2 */
  159. }
  160. /* USER CODE BEGIN 4 */
  161. /* USER CODE END 4 */
  162. /**
  163. * @brief This function is executed in case of error occurrence.
  164. * @retval None
  165. */
  166. void Error_Handler(void)
  167. {
  168. /* USER CODE BEGIN Error_Handler_Debug */
  169. /* User can add his own implementation to report the HAL error return state */
  170. __disable_irq();
  171. while (1)
  172. {
  173. }
  174. /* USER CODE END Error_Handler_Debug */
  175. }
  176. #ifdef USE_FULL_ASSERT
  177. /**
  178. * @brief Reports the name of the source file and the source line number
  179. * where the assert_param error has occurred.
  180. * @param file: pointer to the source file name
  181. * @param line: assert_param error line source number
  182. * @retval None
  183. */
  184. void assert_failed(uint8_t *file, uint32_t line)
  185. {
  186. /* USER CODE BEGIN 6 */
  187. /* User can add his own implementation to report the file name and line number,
  188. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  189. /* USER CODE END 6 */
  190. }
  191. #endif /* USE_FULL_ASSERT */