main.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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 "iwdg.h"
  23. #include "tim.h"
  24. #include "usart.h"
  25. #include "gpio.h"
  26. /* Private includes ----------------------------------------------------------*/
  27. /* USER CODE BEGIN Includes */
  28. #include "mini_gateway_master.h"
  29. #include "modbus_slave.h"
  30. #include "event_groups.h"
  31. /* USER CODE END Includes */
  32. /* Private typedef -----------------------------------------------------------*/
  33. /* USER CODE BEGIN PTD */
  34. /* USER CODE END PTD */
  35. /* Private define ------------------------------------------------------------*/
  36. /* USER CODE BEGIN PD */
  37. extern void prvvTIMERExpiredISR();
  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. void MX_FREERTOS_Init(void);
  48. /* USER CODE BEGIN PFP */
  49. /* USER CODE END PFP */
  50. /* Private user code ---------------------------------------------------------*/
  51. /* USER CODE BEGIN 0 */
  52. /* USER CODE END 0 */
  53. /**
  54. * @brief The application entry point.
  55. * @retval int
  56. */
  57. int main(void)
  58. {
  59. /* USER CODE BEGIN 1 */
  60. /* USER CODE END 1 */
  61. /* MCU Configuration--------------------------------------------------------*/
  62. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  63. HAL_Init();
  64. /* USER CODE BEGIN Init */
  65. /* USER CODE END Init */
  66. /* Configure the system clock */
  67. SystemClock_Config();
  68. /* USER CODE BEGIN SysInit */
  69. /* USER CODE END SysInit */
  70. /* Initialize all configured peripherals */
  71. MX_GPIO_Init();
  72. MX_UART4_Init();
  73. MX_USART2_UART_Init();
  74. MX_USART3_UART_Init();
  75. MX_TIM2_Init();
  76. MX_USART1_UART_Init();
  77. MX_IWDG_Init();
  78. /* USER CODE BEGIN 2 */
  79. EventGroupHandle_t MyEvent01Handle = xEventGroupCreate();//创建事件
  80. ffx_master_init();
  81. mini_gateway_master_init();
  82. start_485_slave(0x10);
  83. /* USER CODE END 2 */
  84. /* Init scheduler */
  85. osKernelInitialize();//2025年
  86. osKernelInitialize();//2025年
  87. /* Call init function for freertos objects (in cmsis_os2.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_LSI|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.LSIState = RCC_LSI_ON;
  117. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  118. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  119. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  120. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  121. {
  122. Error_Handler();
  123. }
  124. /** Initializes the CPU, AHB and APB buses clocks
  125. */
  126. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  127. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  128. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  129. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  130. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  131. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  132. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  133. {
  134. Error_Handler();
  135. }
  136. }
  137. /* USER CODE BEGIN 4 */
  138. /* USER CODE END 4 */
  139. /**
  140. * @brief Period elapsed callback in non blocking mode
  141. * @note This function is called when TIM1 interrupt took place, inside
  142. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  143. * a global variable "uwTick" used as application time base.
  144. * @param htim : TIM handle
  145. * @retval None
  146. */
  147. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  148. {
  149. /* USER CODE BEGIN Callback 0 */
  150. /* USER CODE END Callback 0 */
  151. if (htim->Instance == TIM1) {
  152. HAL_IncTick();
  153. }
  154. /* USER CODE BEGIN Callback 1 */
  155. if (htim->Instance == TIM2) {
  156. prvvTIMERExpiredISR();
  157. }
  158. /* USER CODE END Callback 1 */
  159. }
  160. /**
  161. * @brief This function is executed in case of error occurrence.
  162. * @retval None
  163. */
  164. void Error_Handler(void)
  165. {
  166. /* USER CODE BEGIN Error_Handler_Debug */
  167. /* User can add his own implementation to report the HAL error return state */
  168. __disable_irq();
  169. while (1)
  170. {
  171. }
  172. /* USER CODE END Error_Handler_Debug */
  173. }
  174. #ifdef USE_FULL_ASSERT
  175. /**
  176. * @brief Reports the name of the source file and the source line number
  177. * where the assert_param error has occurred.
  178. * @param file: pointer to the source file name
  179. * @param line: assert_param error line source number
  180. * @retval None
  181. */
  182. void assert_failed(uint8_t *file, uint32_t line)
  183. {
  184. /* USER CODE BEGIN 6 */
  185. /* User can add his own implementation to report the file name and line number,
  186. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  187. /* USER CODE END 6 */
  188. }
  189. #endif /* USE_FULL_ASSERT */