main.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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 "tim.h"
  23. #include "usart.h"
  24. #include "gpio.h"
  25. /* Private includes ----------------------------------------------------------*/
  26. /* USER CODE BEGIN Includes */
  27. #include "mini_gateway_master.h"
  28. #include "modbus_slave.h"
  29. /* USER CODE END Includes */
  30. /* Private typedef -----------------------------------------------------------*/
  31. /* USER CODE BEGIN PTD */
  32. /* USER CODE END PTD */
  33. /* Private define ------------------------------------------------------------*/
  34. /* USER CODE BEGIN PD */
  35. extern void prvvTIMERExpiredISR();
  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. /* USER CODE END 0 */
  51. /**
  52. * @brief The application entry point.
  53. * @retval int
  54. */
  55. int main(void)
  56. {
  57. /* USER CODE BEGIN 1 */
  58. /* USER CODE END 1 */
  59. /* MCU Configuration--------------------------------------------------------*/
  60. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  61. HAL_Init();
  62. /* USER CODE BEGIN Init */
  63. /* USER CODE END Init */
  64. /* Configure the system clock */
  65. SystemClock_Config();
  66. /* USER CODE BEGIN SysInit */
  67. /* USER CODE END SysInit */
  68. /* Initialize all configured peripherals */
  69. MX_GPIO_Init();
  70. MX_UART4_Init();
  71. MX_USART2_UART_Init();
  72. MX_USART3_UART_Init();
  73. MX_TIM2_Init();
  74. MX_USART1_UART_Init();
  75. /* USER CODE BEGIN 2 */
  76. ffx_master_init();
  77. mini_gateway_master_init();
  78. start_485_slave(0x10);
  79. /* USER CODE END 2 */
  80. /* Init scheduler */
  81. osKernelInitialize();
  82. /* Call init function for freertos objects (in cmsis_os2.c) */
  83. MX_FREERTOS_Init();
  84. /* Start scheduler */
  85. osKernelStart();
  86. /* We should never get here as control is now taken by the scheduler */
  87. /* Infinite loop */
  88. /* USER CODE BEGIN WHILE */
  89. while (1)
  90. {
  91. /* USER CODE END WHILE */
  92. /* USER CODE BEGIN 3 */
  93. }
  94. /* USER CODE END 3 */
  95. }
  96. /**
  97. * @brief System Clock Configuration
  98. * @retval None
  99. */
  100. void SystemClock_Config(void)
  101. {
  102. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  103. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  104. /** Initializes the RCC Oscillators according to the specified parameters
  105. * in the RCC_OscInitTypeDef structure.
  106. */
  107. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  108. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  109. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  110. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  111. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  112. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  113. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  114. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  115. {
  116. Error_Handler();
  117. }
  118. /** Initializes the CPU, AHB and APB buses clocks
  119. */
  120. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  121. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  122. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  123. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  124. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  125. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  126. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  127. {
  128. Error_Handler();
  129. }
  130. }
  131. /* USER CODE BEGIN 4 */
  132. /* USER CODE END 4 */
  133. /**
  134. * @brief Period elapsed callback in non blocking mode
  135. * @note This function is called when TIM1 interrupt took place, inside
  136. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  137. * a global variable "uwTick" used as application time base.
  138. * @param htim : TIM handle
  139. * @retval None
  140. */
  141. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  142. {
  143. /* USER CODE BEGIN Callback 0 */
  144. /* USER CODE END Callback 0 */
  145. if (htim->Instance == TIM1) {
  146. HAL_IncTick();
  147. }
  148. /* USER CODE BEGIN Callback 1 */
  149. if (htim->Instance == TIM2) {
  150. prvvTIMERExpiredISR();
  151. }
  152. /* USER CODE END Callback 1 */
  153. }
  154. /**
  155. * @brief This function is executed in case of error occurrence.
  156. * @retval None
  157. */
  158. void Error_Handler(void)
  159. {
  160. /* USER CODE BEGIN Error_Handler_Debug */
  161. /* User can add his own implementation to report the HAL error return state */
  162. __disable_irq();
  163. while (1)
  164. {
  165. }
  166. /* USER CODE END Error_Handler_Debug */
  167. }
  168. #ifdef USE_FULL_ASSERT
  169. /**
  170. * @brief Reports the name of the source file and the source line number
  171. * where the assert_param error has occurred.
  172. * @param file: pointer to the source file name
  173. * @param line: assert_param error line source number
  174. * @retval None
  175. */
  176. void assert_failed(uint8_t *file, uint32_t line)
  177. {
  178. /* USER CODE BEGIN 6 */
  179. /* User can add his own implementation to report the file name and line number,
  180. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  181. /* USER CODE END 6 */
  182. }
  183. #endif /* USE_FULL_ASSERT */