main.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file : main.c
  5. * @brief : Main program body
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under Ultimate Liberty license
  13. * SLA0044, the "License"; You may not use this file except in compliance with
  14. * the License. You may obtain a copy of the License at:
  15. * www.st.com/SLA0044
  16. *
  17. ******************************************************************************
  18. */
  19. /* USER CODE END Header */
  20. /* Includes ------------------------------------------------------------------*/
  21. #include "main.h"
  22. #include "dma.h"
  23. #include "sdio.h"
  24. #include "spi.h"
  25. #include "tim.h"
  26. #include "usart.h"
  27. #include "usb_device.h"
  28. #include "gpio.h"
  29. #include "fsmc.h"
  30. /* Private includes ----------------------------------------------------------*/
  31. /* USER CODE BEGIN Includes */
  32. /* USER CODE END Includes */
  33. /* Private typedef -----------------------------------------------------------*/
  34. /* USER CODE BEGIN PTD */
  35. /* USER CODE END PTD */
  36. /* Private define ------------------------------------------------------------*/
  37. /* USER CODE BEGIN PD */
  38. /* USER CODE END PD */
  39. /* Private macro -------------------------------------------------------------*/
  40. /* USER CODE BEGIN PM */
  41. /* USER CODE END PM */
  42. /* Private variables ---------------------------------------------------------*/
  43. /* USER CODE BEGIN PV */
  44. /* Private variables ---------------------------------------------------------*/
  45. /* USER CODE END PV */
  46. /* Private function prototypes -----------------------------------------------*/
  47. void SystemClock_Config(void);
  48. /* USER CODE BEGIN PFP */
  49. /* Private function prototypes -----------------------------------------------*/
  50. void mainEarlyInit();
  51. void mainInit();
  52. void mainLoop();
  53. /* USER CODE END PFP */
  54. /* Private user code ---------------------------------------------------------*/
  55. /* USER CODE BEGIN 0 */
  56. /* USER CODE END 0 */
  57. /**
  58. * @brief The application entry point.
  59. * @retval int
  60. */
  61. int main(void)
  62. {
  63. /* USER CODE BEGIN 1 */
  64. mainEarlyInit();
  65. /* USER CODE END 1 */
  66. /* MCU Configuration--------------------------------------------------------*/
  67. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  68. HAL_Init();
  69. /* USER CODE BEGIN Init */
  70. /* USER CODE END Init */
  71. /* Configure the system clock */
  72. SystemClock_Config();
  73. /* USER CODE BEGIN SysInit */
  74. /* USER CODE END SysInit */
  75. /* Initialize all configured peripherals */
  76. MX_GPIO_Init();
  77. MX_DMA_Init();
  78. MX_FSMC_Init();
  79. MX_SDIO_SD_Init();
  80. MX_SPI1_Init();
  81. MX_TIM4_Init();
  82. MX_USART3_UART_Init();
  83. MX_USB_DEVICE_Init();
  84. /* USER CODE BEGIN 2 */
  85. mainInit();
  86. /* USER CODE END 2 */
  87. /* Infinite loop */
  88. /* USER CODE BEGIN WHILE */
  89. while (1)
  90. {
  91. /* USER CODE END WHILE */
  92. /* USER CODE BEGIN 3 */
  93. mainLoop();
  94. }
  95. /* USER CODE END 3 */
  96. }
  97. /**
  98. * @brief System Clock Configuration
  99. * @retval None
  100. */
  101. void SystemClock_Config(void)
  102. {
  103. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  104. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  105. /** Initializes the CPU, AHB and APB busses clocks
  106. */
  107. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  108. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  109. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  110. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  111. RCC_OscInitStruct.PLL.PLLM = 20;
  112. RCC_OscInitStruct.PLL.PLLN = 432;
  113. RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV4;
  114. RCC_OscInitStruct.PLL.PLLQ = 9;
  115. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  116. {
  117. Error_Handler();
  118. }
  119. /** Initializes the CPU, AHB and APB busses clocks
  120. */
  121. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  122. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  123. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  124. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  125. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
  126. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
  127. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_3) != HAL_OK)
  128. {
  129. Error_Handler();
  130. }
  131. HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_PLLCLK, RCC_MCODIV_1);
  132. }
  133. /* USER CODE BEGIN 4 */
  134. /* USER CODE END 4 */
  135. /**
  136. * @brief This function is executed in case of error occurrence.
  137. * @retval None
  138. */
  139. void Error_Handler(void)
  140. {
  141. /* USER CODE BEGIN Error_Handler_Debug */
  142. /* User can add his own implementation to report the HAL error return state */
  143. /* USER CODE END Error_Handler_Debug */
  144. }
  145. #ifdef USE_FULL_ASSERT
  146. /**
  147. * @brief Reports the name of the source file and the source line number
  148. * where the assert_param error has occurred.
  149. * @param file: pointer to the source file name
  150. * @param line: assert_param error line source number
  151. * @retval None
  152. */
  153. void assert_failed(uint8_t *file, uint32_t line)
  154. {
  155. /* USER CODE BEGIN 6 */
  156. /* User can add his own implementation to report the file name and line number,
  157. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  158. /* USER CODE END 6 */
  159. }
  160. #endif /* USE_FULL_ASSERT */
  161. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/