main.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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 "can.h"
  23. #include "dma.h"
  24. #include "rtc.h"
  25. #include "spi.h"
  26. #include "tim.h"
  27. #include "usart.h"
  28. #include "gpio.h"
  29. /* Private includes ----------------------------------------------------------*/
  30. /* USER CODE BEGIN Includes */
  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. /* USER CODE END PD */
  38. /* Private macro -------------------------------------------------------------*/
  39. /* USER CODE BEGIN PM */
  40. extern Menu_table menu;
  41. extern bool refresh;
  42. /* USER CODE END PM */
  43. /* Private variables ---------------------------------------------------------*/
  44. /* USER CODE BEGIN PV */
  45. /* USER CODE END PV */
  46. /* Private function prototypes -----------------------------------------------*/
  47. void SystemClock_Config(void);
  48. void MX_FREERTOS_Init(void);
  49. /* USER CODE BEGIN PFP */
  50. /* USER CODE END PFP */
  51. /* Private user code ---------------------------------------------------------*/
  52. /* USER CODE BEGIN 0 */
  53. /* USER CODE END 0 */
  54. /**
  55. * @brief The application entry point.
  56. * @retval int
  57. */
  58. int main(void)
  59. {
  60. /* USER CODE BEGIN 1 */
  61. /* USER CODE END 1 */
  62. /* MCU Configuration--------------------------------------------------------*/
  63. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  64. HAL_Init();
  65. /* USER CODE BEGIN Init */
  66. /* USER CODE END Init */
  67. /* Configure the system clock */
  68. SystemClock_Config();
  69. /* USER CODE BEGIN SysInit */
  70. /* USER CODE END SysInit */
  71. /* Initialize all configured peripherals */
  72. MX_GPIO_Init();
  73. MX_DMA_Init();
  74. MX_SPI1_Init();
  75. MX_TIM2_Init();
  76. MX_TIM3_Init();
  77. MX_USART1_UART_Init();
  78. MX_USART2_UART_Init();
  79. MX_USART3_UART_Init();
  80. MX_UART4_Init();
  81. MX_UART5_Init();
  82. MX_SPI2_Init();
  83. MX_CAN_Init();
  84. MX_RTC_Init();
  85. /* USER CODE BEGIN 2 */
  86. TIM_Start(&htim2); //wdi
  87. TIM_Start(&htim3); //led
  88. OLED_DISPLAY(0,0); //color>1 反色;display>1 翻转
  89. IDLE_DMA_UART(&huart4); //开启4G_DMA中断
  90. RXNE_UART(&huart5); //开启BT中断
  91. HELLO("\r\t###00\tDtuStart...");
  92. #if Test_old ==1
  93. MBA32A_Init_demo();
  94. #else
  95. MBA32A_Init(); //蓝牙初始化
  96. module4G_init=true;
  97. // ML307A_Init(); //4G初始化
  98. #endif
  99. /* USER CODE END 2 */
  100. /* Call init function for freertos objects (in freertos.c) */
  101. MX_FREERTOS_Init();
  102. /* Start scheduler */
  103. osKernelStart();
  104. /* We should never get here as control is now taken by the scheduler */
  105. /* Infinite loop */
  106. /* USER CODE BEGIN WHILE */
  107. while (1)
  108. {
  109. /* USER CODE END WHILE */
  110. /* USER CODE BEGIN 3 */
  111. }
  112. /* USER CODE END 3 */
  113. }
  114. /**
  115. * @brief System Clock Configuration
  116. * @retval None
  117. */
  118. void SystemClock_Config(void)
  119. {
  120. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  121. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  122. RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
  123. /** Initializes the RCC Oscillators according to the specified parameters
  124. * in the RCC_OscInitTypeDef structure.
  125. */
  126. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  127. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  128. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  129. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  130. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  131. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  132. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  133. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  134. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  135. {
  136. Error_Handler();
  137. }
  138. /** Initializes the CPU, AHB and APB buses clocks
  139. */
  140. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  141. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  142. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  143. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  144. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  145. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  146. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  147. {
  148. Error_Handler();
  149. }
  150. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_RTC;
  151. PeriphClkInit.RTCClockSelection = RCC_RTCCLKSOURCE_LSI;
  152. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  153. {
  154. Error_Handler();
  155. }
  156. }
  157. /* USER CODE BEGIN 4 */
  158. /* USER CODE END 4 */
  159. /**
  160. * @brief Period elapsed callback in non blocking mode
  161. * @note This function is called when TIM1 interrupt took place, inside
  162. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  163. * a global variable "uwTick" used as application time base.
  164. * @param htim : TIM handle
  165. * @retval None
  166. */
  167. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  168. {
  169. /* USER CODE BEGIN Callback 0 */
  170. /* USER CODE END Callback 0 */
  171. if (htim->Instance == TIM1) {
  172. HAL_IncTick();
  173. }
  174. /* USER CODE BEGIN Callback 1 */
  175. //喂看门狗
  176. TOGGLE_WDI_PIN(&htim2);
  177. /* USER CODE END Callback 1 */
  178. }
  179. /**
  180. * @brief This function is executed in case of error occurrence.
  181. * @retval None
  182. */
  183. void Error_Handler(void)
  184. {
  185. /* USER CODE BEGIN Error_Handler_Debug */
  186. /* User can add his own implementation to report the HAL error return state */
  187. __disable_irq();
  188. while (1)
  189. {
  190. }
  191. /* USER CODE END Error_Handler_Debug */
  192. }
  193. #ifdef USE_FULL_ASSERT
  194. /**
  195. * @brief Reports the name of the source file and the source line number
  196. * where the assert_param error has occurred.
  197. * @param file: pointer to the source file name
  198. * @param line: assert_param error line source number
  199. * @retval None
  200. */
  201. void assert_failed(uint8_t *file, uint32_t line)
  202. {
  203. /* USER CODE BEGIN 6 */
  204. /* User can add his own implementation to report the file name and line number,
  205. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  206. /* USER CODE END 6 */
  207. }
  208. #endif /* USE_FULL_ASSERT */