main.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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 "fmc.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. /* USER CODE END PV */
  45. /* Private function prototypes -----------------------------------------------*/
  46. void SystemClock_Config(void);
  47. /* USER CODE BEGIN PFP */
  48. /* Private function prototypes -----------------------------------------------*/
  49. void mainEarlyInit();
  50. void mainInit();
  51. void mainLoop();
  52. /* USER CODE END PFP */
  53. /* Private user code ---------------------------------------------------------*/
  54. /* USER CODE BEGIN 0 */
  55. /* USER CODE END 0 */
  56. /**
  57. * @brief The application entry point.
  58. * @retval int
  59. */
  60. int main(void)
  61. {
  62. /* USER CODE BEGIN 1 */
  63. mainEarlyInit();
  64. /* USER CODE END 1 */
  65. /* MCU Configuration--------------------------------------------------------*/
  66. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  67. HAL_Init();
  68. /* USER CODE BEGIN Init */
  69. /* USER CODE END Init */
  70. /* Configure the system clock */
  71. SystemClock_Config();
  72. /* USER CODE BEGIN SysInit */
  73. /* USER CODE END SysInit */
  74. /* Initialize all configured peripherals */
  75. MX_GPIO_Init();
  76. MX_DMA_Init();
  77. MX_SDIO_SD_Init();
  78. MX_SPI1_Init();
  79. MX_FMC_Init();
  80. MX_UART4_Init();
  81. /* USER CODE BEGIN 2 */
  82. mainInit();
  83. /* USER CODE END 2 */
  84. /* Infinite loop */
  85. /* USER CODE BEGIN WHILE */
  86. while (1)
  87. {
  88. /* USER CODE END WHILE */
  89. /* USER CODE BEGIN 3 */
  90. mainLoop();
  91. }
  92. /* USER CODE END 3 */
  93. }
  94. /**
  95. * @brief System Clock Configuration
  96. * @retval None
  97. */
  98. void SystemClock_Config(void)
  99. {
  100. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  101. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  102. RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
  103. /** Configure the main internal regulator output voltage
  104. */
  105. __HAL_RCC_PWR_CLK_ENABLE();
  106. __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
  107. /** Initializes the CPU, AHB and APB busses clocks
  108. */
  109. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  110. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  111. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  112. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  113. RCC_OscInitStruct.PLL.PLLM = 12;
  114. RCC_OscInitStruct.PLL.PLLN = 360;
  115. RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
  116. RCC_OscInitStruct.PLL.PLLQ = 8;
  117. RCC_OscInitStruct.PLL.PLLR = 2;
  118. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  119. {
  120. Error_Handler();
  121. }
  122. /** Activate the Over-Drive mode
  123. */
  124. if (HAL_PWREx_EnableOverDrive() != HAL_OK)
  125. {
  126. Error_Handler();
  127. }
  128. /** Initializes the CPU, AHB and APB busses clocks
  129. */
  130. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  131. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  132. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  133. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  134. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
  135. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
  136. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5) != HAL_OK)
  137. {
  138. Error_Handler();
  139. }
  140. PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_SDIO|RCC_PERIPHCLK_CLK48;
  141. PeriphClkInitStruct.PLLSAI.PLLSAIM = 12;
  142. PeriphClkInitStruct.PLLSAI.PLLSAIN = 192;
  143. PeriphClkInitStruct.PLLSAI.PLLSAIQ = 2;
  144. PeriphClkInitStruct.PLLSAI.PLLSAIP = RCC_PLLSAIP_DIV4;
  145. PeriphClkInitStruct.PLLSAIDivQ = 1;
  146. PeriphClkInitStruct.Clk48ClockSelection = RCC_CLK48CLKSOURCE_PLLSAIP;
  147. PeriphClkInitStruct.SdioClockSelection = RCC_SDIOCLKSOURCE_CLK48;
  148. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK)
  149. {
  150. Error_Handler();
  151. }
  152. HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_PLLCLK, RCC_MCODIV_2);
  153. }
  154. /* USER CODE BEGIN 4 */
  155. /* USER CODE END 4 */
  156. /**
  157. * @brief This function is executed in case of error occurrence.
  158. * @retval None
  159. */
  160. void Error_Handler(void)
  161. {
  162. /* USER CODE BEGIN Error_Handler_Debug */
  163. /* User can add his own implementation to report the HAL error return state */
  164. /* USER CODE END Error_Handler_Debug */
  165. }
  166. #ifdef USE_FULL_ASSERT
  167. /**
  168. * @brief Reports the name of the source file and the source line number
  169. * where the assert_param error has occurred.
  170. * @param file: pointer to the source file name
  171. * @param line: assert_param error line source number
  172. * @retval None
  173. */
  174. void assert_failed(uint8_t *file, uint32_t line)
  175. {
  176. /* USER CODE BEGIN 6 */
  177. /* User can add his own implementation to report the file name and line number,
  178. tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  179. /* USER CODE END 6 */
  180. }
  181. #endif /* USE_FULL_ASSERT */
  182. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/