main.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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 BtFrame btframe;
  42. extern bool refresh;
  43. extern TipsFlag tipsflag;
  44. /* USER CODE END PM */
  45. /* Private variables ---------------------------------------------------------*/
  46. /* USER CODE BEGIN PV */
  47. /* USER CODE END PV */
  48. /* Private function prototypes -----------------------------------------------*/
  49. void SystemClock_Config(void);
  50. void MX_FREERTOS_Init(void);
  51. /* USER CODE BEGIN PFP */
  52. void Jump_interface(Menu_table menu);
  53. void readLockStatusinit(void);
  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_DMA_Init();
  78. MX_SPI1_Init();
  79. MX_TIM2_Init();
  80. MX_TIM3_Init();
  81. MX_USART1_UART_Init();
  82. MX_USART2_UART_Init();
  83. MX_USART3_UART_Init();
  84. MX_UART4_Init();
  85. MX_UART5_Init();
  86. MX_SPI2_Init();
  87. MX_CAN_Init();
  88. MX_RTC_Init();
  89. /* USER CODE BEGIN 2 */
  90. TIM_Start(&htim2); //wdi
  91. TIM_Start(&htim3); //led
  92. OLED_DISPLAY(0,0); //color>1 反色;display>1 翻转
  93. IDLE_DMA_UART(&huart4); //开启4G_DMA中断
  94. RXNE_UART(&huart5); //开启BT接收中断
  95. START_PROCESS(); //SYETEM启动
  96. readLockStatusinit();
  97. #if openBT==1
  98. MBA32A_Init();
  99. #endif
  100. #if open4G==1
  101. reset4Gmodule = true;//ML307A_Init();
  102. #endif
  103. /* USER CODE END 2 */
  104. /* Call init function for freertos objects (in freertos.c) */
  105. MX_FREERTOS_Init();
  106. /* Start scheduler */
  107. osKernelStart();
  108. /* We should never get here as control is now taken by the scheduler */
  109. /* Infinite loop */
  110. /* USER CODE BEGIN WHILE */
  111. while (1)
  112. {
  113. /* USER CODE END WHILE */
  114. /* USER CODE BEGIN 3 */
  115. }
  116. /* USER CODE END 3 */
  117. }
  118. /**
  119. * @brief System Clock Configuration
  120. * @retval None
  121. */
  122. void SystemClock_Config(void)
  123. {
  124. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  125. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  126. RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
  127. /** Initializes the RCC Oscillators according to the specified parameters
  128. * in the RCC_OscInitTypeDef structure.
  129. */
  130. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  131. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  132. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  133. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  134. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  135. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  136. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  137. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  138. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  139. {
  140. Error_Handler();
  141. }
  142. /** Initializes the CPU, AHB and APB buses clocks
  143. */
  144. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  145. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  146. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  147. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  148. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  149. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  150. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  151. {
  152. Error_Handler();
  153. }
  154. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_RTC;
  155. PeriphClkInit.RTCClockSelection = RCC_RTCCLKSOURCE_LSI;
  156. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  157. {
  158. Error_Handler();
  159. }
  160. }
  161. /* USER CODE BEGIN 4 */
  162. void readLockStatusinit(void)
  163. {
  164. uint16_t S1bd = read_flash_16(Sn1Addr);
  165. uint16_t S2bd = read_flash_16(Sn2Addr);
  166. uint16_t S3bd = read_flash_16(Sn3Addr);
  167. uint16_t S4bd = read_flash_16(Sn4Addr);
  168. uint32_t S1LS = read_flash_32(serialNum1Addr);
  169. uint32_t S2LS = read_flash_32(serialNum2Addr);
  170. uint32_t S3LS = read_flash_32(serialNum3Addr);
  171. uint32_t S4LS = read_flash_32(serialNum4Addr);
  172. if(S1bd!=0xFFFF)
  173. {
  174. L1bd=true;
  175. }
  176. if(S2bd!=0xFFFF)
  177. {
  178. L2bd=true;
  179. }
  180. if(S3bd!=0xFFFF)
  181. {
  182. L3bd=true;
  183. }
  184. if(S4bd!=0xFFFF)
  185. {
  186. L4bd=true;
  187. }
  188. if(S1LS==0xFFFFFFFF)
  189. {
  190. btframe.serialNum1 = 0;
  191. }
  192. else
  193. {
  194. btframe.serialNum1 = S1LS;
  195. }
  196. if(S2LS==0xFFFFFFFF)
  197. {
  198. btframe.serialNum2 = 0;
  199. }
  200. else
  201. {
  202. btframe.serialNum2 = S2LS;
  203. }
  204. if(S3LS==0xFFFFFFFF)
  205. {
  206. btframe.serialNum3 = 0;
  207. }
  208. else
  209. {
  210. btframe.serialNum3 = S3LS;
  211. }
  212. if(S4LS==0xFFFFFFFF)
  213. {
  214. btframe.serialNum4 = 0;
  215. }
  216. else
  217. {
  218. btframe.serialNum4 = S4LS;
  219. }
  220. S1 = read_flash_16(Sn1StatusAddr);
  221. S2 = read_flash_16(Sn2StatusAddr);
  222. S3 = read_flash_16(Sn3StatusAddr);
  223. S4 = read_flash_16(Sn4StatusAddr);
  224. refresh=true;
  225. }
  226. /* USER CODE END 4 */
  227. /**
  228. * @brief Period elapsed callback in non blocking mode
  229. * @note This function is called when TIM1 interrupt took place, inside
  230. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  231. * a global variable "uwTick" used as application time base.
  232. * @param htim : TIM handle
  233. * @retval None
  234. */
  235. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  236. {
  237. /* USER CODE BEGIN Callback 0 */
  238. /* USER CODE END Callback 0 */
  239. if (htim->Instance == TIM1) {
  240. HAL_IncTick();
  241. }
  242. /* USER CODE BEGIN Callback 1 */
  243. //喂看门狗
  244. TOGGLE_WDI_PIN(&htim2);
  245. /* USER CODE END Callback 1 */
  246. }
  247. /**
  248. * @brief This function is executed in case of error occurrence.
  249. * @retval None
  250. */
  251. void Error_Handler(void)
  252. {
  253. /* USER CODE BEGIN Error_Handler_Debug */
  254. /* User can add his own implementation to report the HAL error return state */
  255. __disable_irq();
  256. while (1)
  257. {
  258. }
  259. /* USER CODE END Error_Handler_Debug */
  260. }
  261. #ifdef USE_FULL_ASSERT
  262. /**
  263. * @brief Reports the name of the source file and the source line number
  264. * where the assert_param error has occurred.
  265. * @param file: pointer to the source file name
  266. * @param line: assert_param error line source number
  267. * @retval None
  268. */
  269. void assert_failed(uint8_t *file, uint32_t line)
  270. {
  271. /* USER CODE BEGIN 6 */
  272. /* User can add his own implementation to report the file name and line number,
  273. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  274. /* USER CODE END 6 */
  275. }
  276. #endif /* USE_FULL_ASSERT */