main.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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) 2020 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 "cmsis_os.h"
  23. #include "adc.h"
  24. #include "comp.h"
  25. #include "i2c.h"
  26. #include "rf.h"
  27. #include "rtc.h"
  28. #include "spi.h"
  29. #include "tim.h"
  30. #include "usart.h"
  31. #include "usb_device.h"
  32. #include "gpio.h"
  33. /* Private includes ----------------------------------------------------------*/
  34. /* USER CODE BEGIN Includes */
  35. #include "fatfs/fatfs.h"
  36. #include "api-hal.h"
  37. /* USER CODE END Includes */
  38. /* Private typedef -----------------------------------------------------------*/
  39. /* USER CODE BEGIN PTD */
  40. /* USER CODE END PTD */
  41. /* Private define ------------------------------------------------------------*/
  42. /* USER CODE BEGIN PD */
  43. /* USER CODE END PD */
  44. /* Private macro -------------------------------------------------------------*/
  45. /* USER CODE BEGIN PM */
  46. /* USER CODE END PM */
  47. /* Private variables ---------------------------------------------------------*/
  48. /* USER CODE BEGIN PV */
  49. /* USER CODE END PV */
  50. /* Private function prototypes -----------------------------------------------*/
  51. void SystemClock_Config(void);
  52. void MX_FREERTOS_Init(void);
  53. /* USER CODE BEGIN PFP */
  54. /* USER CODE END PFP */
  55. /* Private user code ---------------------------------------------------------*/
  56. /* USER CODE BEGIN 0 */
  57. /* USER CODE END 0 */
  58. /**
  59. * @brief The application entry point.
  60. * @retval int
  61. */
  62. int main(void)
  63. {
  64. /* USER CODE BEGIN 1 */
  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_ADC1_Init();
  78. MX_I2C1_Init();
  79. MX_RTC_Init();
  80. MX_SPI1_Init();
  81. MX_SPI2_Init();
  82. MX_USART1_UART_Init();
  83. MX_USB_Device_Init();
  84. MX_TIM1_Init();
  85. MX_TIM2_Init();
  86. MX_TIM16_Init();
  87. MX_COMP1_Init();
  88. MX_RF_Init();
  89. /* USER CODE BEGIN 2 */
  90. MX_FATFS_Init();
  91. delay_us_init_DWT();
  92. api_hal_vcp_init();
  93. /* USER CODE END 2 */
  94. /* Init scheduler */
  95. osKernelInitialize(); /* Call init function for freertos objects (in freertos.c) */
  96. MX_FREERTOS_Init();
  97. /* Start scheduler */
  98. osKernelStart();
  99. /* We should never get here as control is now taken by the scheduler */
  100. /* Infinite loop */
  101. /* USER CODE BEGIN WHILE */
  102. while (1)
  103. {
  104. /* USER CODE END WHILE */
  105. /* USER CODE BEGIN 3 */
  106. }
  107. /* USER CODE END 3 */
  108. }
  109. /**
  110. * @brief System Clock Configuration
  111. * @retval None
  112. */
  113. void SystemClock_Config(void)
  114. {
  115. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  116. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  117. RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
  118. /** Configure LSE Drive Capability
  119. */
  120. HAL_PWR_EnableBkUpAccess();
  121. __HAL_RCC_LSEDRIVE_CONFIG(RCC_LSEDRIVE_LOW);
  122. /** Configure the main internal regulator output voltage
  123. */
  124. __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
  125. /** Initializes the RCC Oscillators according to the specified parameters
  126. * in the RCC_OscInitTypeDef structure.
  127. */
  128. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI|RCC_OSCILLATORTYPE_HSE
  129. |RCC_OSCILLATORTYPE_LSE;
  130. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  131. RCC_OscInitStruct.LSEState = RCC_LSE_ON;
  132. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  133. RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
  134. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  135. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  136. RCC_OscInitStruct.PLL.PLLM = RCC_PLLM_DIV2;
  137. RCC_OscInitStruct.PLL.PLLN = 8;
  138. RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
  139. RCC_OscInitStruct.PLL.PLLR = RCC_PLLR_DIV2;
  140. RCC_OscInitStruct.PLL.PLLQ = RCC_PLLQ_DIV2;
  141. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  142. {
  143. Error_Handler();
  144. }
  145. /** Configure the SYSCLKSource, HCLK, PCLK1 and PCLK2 clocks dividers
  146. */
  147. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK4|RCC_CLOCKTYPE_HCLK2
  148. |RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  149. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  150. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  151. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  152. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
  153. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  154. RCC_ClkInitStruct.AHBCLK2Divider = RCC_SYSCLK_DIV2;
  155. RCC_ClkInitStruct.AHBCLK4Divider = RCC_SYSCLK_DIV1;
  156. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_3) != HAL_OK)
  157. {
  158. Error_Handler();
  159. }
  160. /** Initializes the peripherals clocks
  161. */
  162. PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_SMPS|RCC_PERIPHCLK_RFWAKEUP
  163. |RCC_PERIPHCLK_RTC|RCC_PERIPHCLK_USART1
  164. |RCC_PERIPHCLK_I2C1|RCC_PERIPHCLK_USB
  165. |RCC_PERIPHCLK_ADC;
  166. PeriphClkInitStruct.PLLSAI1.PLLN = 6;
  167. PeriphClkInitStruct.PLLSAI1.PLLP = RCC_PLLP_DIV2;
  168. PeriphClkInitStruct.PLLSAI1.PLLQ = RCC_PLLQ_DIV2;
  169. PeriphClkInitStruct.PLLSAI1.PLLR = RCC_PLLR_DIV2;
  170. PeriphClkInitStruct.PLLSAI1.PLLSAI1ClockOut = RCC_PLLSAI1_USBCLK|RCC_PLLSAI1_ADCCLK;
  171. PeriphClkInitStruct.Usart1ClockSelection = RCC_USART1CLKSOURCE_PCLK2;
  172. PeriphClkInitStruct.I2c1ClockSelection = RCC_I2C1CLKSOURCE_PCLK1;
  173. PeriphClkInitStruct.UsbClockSelection = RCC_USBCLKSOURCE_PLLSAI1;
  174. PeriphClkInitStruct.AdcClockSelection = RCC_ADCCLKSOURCE_PLLSAI1;
  175. PeriphClkInitStruct.RTCClockSelection = RCC_RTCCLKSOURCE_LSE;
  176. PeriphClkInitStruct.RFWakeUpClockSelection = RCC_RFWKPCLKSOURCE_HSE_DIV1024;
  177. PeriphClkInitStruct.SmpsClockSelection = RCC_SMPSCLKSOURCE_HSE;
  178. PeriphClkInitStruct.SmpsDivSelection = RCC_SMPSCLKDIV_RANGE0;
  179. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK)
  180. {
  181. Error_Handler();
  182. }
  183. /* USER CODE BEGIN Smps */
  184. /* USER CODE END Smps */
  185. /** Enables the Clock Security System
  186. */
  187. HAL_RCC_EnableCSS();
  188. }
  189. /* USER CODE BEGIN 4 */
  190. /* USER CODE END 4 */
  191. /**
  192. * @brief Period elapsed callback in non blocking mode
  193. * @note This function is called when TIM17 interrupt took place, inside
  194. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  195. * a global variable "uwTick" used as application time base.
  196. * @param htim : TIM handle
  197. * @retval None
  198. */
  199. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  200. {
  201. /* USER CODE BEGIN Callback 0 */
  202. /* USER CODE END Callback 0 */
  203. if (htim->Instance == TIM17) {
  204. HAL_IncTick();
  205. }
  206. /* USER CODE BEGIN Callback 1 */
  207. /* USER CODE END Callback 1 */
  208. }
  209. /**
  210. * @brief This function is executed in case of error occurrence.
  211. * @retval None
  212. */
  213. void Error_Handler(void)
  214. {
  215. /* USER CODE BEGIN Error_Handler_Debug */
  216. /* User can add his own implementation to report the HAL error return state */
  217. /* USER CODE END Error_Handler_Debug */
  218. }
  219. #ifdef USE_FULL_ASSERT
  220. /**
  221. * @brief Reports the name of the source file and the source line number
  222. * where the assert_param error has occurred.
  223. * @param file: pointer to the source file name
  224. * @param line: assert_param error line source number
  225. * @retval None
  226. */
  227. void assert_failed(uint8_t *file, uint32_t line)
  228. {
  229. /* USER CODE BEGIN 6 */
  230. /* User can add his own implementation to report the file name and line number,
  231. tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  232. /* USER CODE END 6 */
  233. }
  234. #endif /* USE_FULL_ASSERT */
  235. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/