main.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file : main.c
  5. * @brief : Main program body
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2024 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 "dma.h"
  23. #include "spi.h"
  24. #include "tim.h"
  25. #include "usart.h"
  26. #include "gpio.h"
  27. /* Private includes ----------------------------------------------------------*/
  28. /* USER CODE BEGIN Includes */
  29. #include <stdio.h>
  30. /* USER CODE END Includes */
  31. /* Private typedef -----------------------------------------------------------*/
  32. /* USER CODE BEGIN PTD */
  33. /* USER CODE END PTD */
  34. /* Private define ------------------------------------------------------------*/
  35. /* USER CODE BEGIN PD */
  36. /* USER CODE END PD */
  37. /* Private macro -------------------------------------------------------------*/
  38. /* USER CODE BEGIN PM */
  39. /* USER CODE END PM */
  40. /* Private variables ---------------------------------------------------------*/
  41. /* USER CODE BEGIN PV */
  42. /* USER CODE END PV */
  43. /* Private function prototypes -----------------------------------------------*/
  44. void SystemClock_Config(void);
  45. void MX_FREERTOS_Init(void);
  46. /* USER CODE BEGIN PFP */
  47. /* USER CODE END PFP */
  48. /* Private user code ---------------------------------------------------------*/
  49. /* USER CODE BEGIN 0 */
  50. int fputc(int ch, FILE *f)
  51. {
  52. HAL_UART_Transmit(&huart1, (uint8_t*)&ch ,1,1000);
  53. return (ch);
  54. }
  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. /* USER CODE END 1 */
  64. /* MCU Configuration--------------------------------------------------------*/
  65. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  66. HAL_Init();
  67. /* USER CODE BEGIN Init */
  68. /* USER CODE END Init */
  69. /* Configure the system clock */
  70. SystemClock_Config();
  71. /* USER CODE BEGIN SysInit */
  72. Remap_Vector_Table();
  73. /* USER CODE END SysInit */
  74. /* Initialize all configured peripherals */
  75. MX_GPIO_Init();
  76. MX_DMA_Init();
  77. MX_TIM2_Init();
  78. MX_TIM4_Init();
  79. MX_USART1_UART_Init();
  80. MX_USART3_UART_Init();
  81. MX_UART4_Init();
  82. MX_SPI1_Init();
  83. /* USER CODE BEGIN 2 */
  84. centralCtrSys_Init(&s_param_boot, &s_global_par);
  85. /* USER CODE END 2 */
  86. /* Init scheduler */
  87. osKernelInitialize(); /* Call init function for freertos objects (in freertos.c) */
  88. MX_FREERTOS_Init();
  89. /* Start scheduler */
  90. osKernelStart();
  91. /* We should never get here as control is now taken by the scheduler */
  92. /* Infinite loop */
  93. /* USER CODE BEGIN WHILE */
  94. while (1)
  95. {
  96. /* USER CODE END WHILE */
  97. /* USER CODE BEGIN 3 */
  98. }
  99. /* USER CODE END 3 */
  100. }
  101. /**
  102. * @brief System Clock Configuration
  103. * @retval None
  104. */
  105. void SystemClock_Config(void)
  106. {
  107. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  108. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  109. /** Initializes the RCC Oscillators according to the specified parameters
  110. * in the RCC_OscInitTypeDef structure.
  111. */
  112. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  113. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  114. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  115. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  116. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  117. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  118. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  119. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  120. {
  121. Error_Handler();
  122. }
  123. /** Initializes the CPU, AHB and APB buses clocks
  124. */
  125. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  126. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  127. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  128. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  129. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  130. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  131. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  132. {
  133. Error_Handler();
  134. }
  135. }
  136. /* USER CODE BEGIN 4 */
  137. uint32_t FreeRTOSRunTimeTicks;
  138. void configureTimerForRunTimeStats(void)
  139. {
  140. HAL_TIM_Base_Start_IT(&htim4);
  141. }
  142. unsigned long getRunTimeCounterValue(void)
  143. {
  144. return FreeRTOSRunTimeTicks;
  145. }
  146. /* USER CODE END 4 */
  147. /**
  148. * @brief Period elapsed callback in non blocking mode
  149. * @note This function is called when TIM1 interrupt took place, inside
  150. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  151. * a global variable "uwTick" used as application time base.
  152. * @param htim : TIM handle
  153. * @retval None
  154. */
  155. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  156. {
  157. /* USER CODE BEGIN Callback 0 */
  158. uint32_t preemptPriority, subPriority;
  159. /* USER CODE END Callback 0 */
  160. if (htim->Instance == TIM1) {
  161. HAL_IncTick();
  162. }
  163. /* USER CODE BEGIN Callback 1 */
  164. if (htim->Instance == TIM2) {
  165. HAL_NVIC_GetPriority(TIM2_IRQn, NVIC_PRIORITYGROUP_4, &preemptPriority, &subPriority);
  166. // printf("TIM2_Priority:%d\r\n",preemptPriority);
  167. }
  168. if (htim->Instance == TIM3) {
  169. HAL_NVIC_GetPriority(TIM3_IRQn, NVIC_PRIORITYGROUP_4, &preemptPriority, &subPriority);
  170. // printf("TIM3_Priority:%d\r\n",preemptPriority);
  171. }
  172. if (htim->Instance == TIM4) {
  173. FreeRTOSRunTimeTicks++;
  174. }
  175. /* USER CODE END Callback 1 */
  176. }
  177. /**
  178. * @brief This function is executed in case of error occurrence.
  179. * @retval None
  180. */
  181. void Error_Handler(void)
  182. {
  183. /* USER CODE BEGIN Error_Handler_Debug */
  184. /* User can add his own implementation to report the HAL error return state */
  185. __disable_irq();
  186. while (1)
  187. {
  188. }
  189. /* USER CODE END Error_Handler_Debug */
  190. }
  191. #ifdef USE_FULL_ASSERT
  192. /**
  193. * @brief Reports the name of the source file and the source line number
  194. * where the assert_param error has occurred.
  195. * @param file: pointer to the source file name
  196. * @param line: assert_param error line source number
  197. * @retval None
  198. */
  199. void assert_failed(uint8_t *file, uint32_t line)
  200. {
  201. /* USER CODE BEGIN 6 */
  202. /* User can add his own implementation to report the file name and line number,
  203. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  204. /* USER CODE END 6 */
  205. }
  206. #endif /* USE_FULL_ASSERT */