main.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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 bool refresh;
  41. extern TipsFlag tipsflag;
  42. extern Menu_table menu;
  43. extern LockInfo lockinfo;
  44. void Jump_interface_PDA(void);
  45. uint16_t sys_mode[2];
  46. bool wdiFlag = false;
  47. char version[] = "\r\nVER:dtu-20240419\r\n";
  48. /* USER CODE END PM */
  49. /* Private variables ---------------------------------------------------------*/
  50. /* USER CODE BEGIN PV */
  51. /* USER CODE END PV */
  52. /* Private function prototypes -----------------------------------------------*/
  53. void SystemClock_Config(void);
  54. void MX_FREERTOS_Init(void);
  55. /* USER CODE BEGIN PFP */
  56. /* USER CODE END PFP */
  57. /* Private user code ---------------------------------------------------------*/
  58. /* USER CODE BEGIN 0 */
  59. /* USER CODE END 0 */
  60. /**
  61. * @brief The application entry point.
  62. * @retval int
  63. */
  64. int main(void)
  65. {
  66. /* USER CODE BEGIN 1 */
  67. /* USER CODE END 1 */
  68. /* MCU Configuration--------------------------------------------------------*/
  69. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  70. HAL_Init();
  71. /* USER CODE BEGIN Init */
  72. /* USER CODE END Init */
  73. /* Configure the system clock */
  74. SystemClock_Config();
  75. /* USER CODE BEGIN SysInit */
  76. /* USER CODE END SysInit */
  77. /* Initialize all configured peripherals */
  78. MX_GPIO_Init();
  79. MX_DMA_Init();
  80. MX_SPI1_Init();
  81. MX_TIM2_Init();
  82. MX_TIM3_Init();
  83. MX_USART1_UART_Init();
  84. MX_USART2_UART_Init();
  85. MX_USART3_UART_Init();
  86. MX_UART4_Init();
  87. MX_UART5_Init();
  88. MX_SPI2_Init();
  89. MX_CAN_Init();
  90. MX_RTC_Init();
  91. /* USER CODE BEGIN 2 */
  92. HAL_TIM_Base_Start_IT(&htim2); //wdi
  93. HAL_TIM_Base_Start_IT(&htim3); //led
  94. OLED_DISPLAY(0,0); //color>1 反色;display>1 翻转
  95. IDLE_DMA_UART(&huart1); //开启U1中断
  96. HAL_UART_Receive_DMA(&huart1, U1_485recvBuff, BUFFER_SIZE); //开启U1接收
  97. IDLE_DMA_UART(&huart4); //开启4G_DMA中断
  98. HAL_UART_Receive_DMA(&huart4, U4_4GrecvBuff, BUFFER_SIZE);
  99. __HAL_UART_ENABLE_IT(&huart5, UART_IT_RXNE);//开启BT接收中断
  100. START_PROCESS();
  101. //Database_init(0x760,0x760,0x5,0x5);//760
  102. //MBA32A_Init();
  103. //reset4Gmodule = true;
  104. //ReadSNname();
  105. menu.current = 0;
  106. /* USER CODE END 2 */
  107. /* Call init function for freertos objects (in freertos.c) */
  108. MX_FREERTOS_Init();
  109. /* Start scheduler */
  110. osKernelStart();
  111. /* We should never get here as control is now taken by the scheduler */
  112. /* Infinite loop */
  113. /* USER CODE BEGIN WHILE */
  114. while (1)
  115. {
  116. /* USER CODE END WHILE */
  117. /* USER CODE BEGIN 3 */
  118. }
  119. /* USER CODE END 3 */
  120. }
  121. /**
  122. * @brief System Clock Configuration
  123. * @retval None
  124. */
  125. void SystemClock_Config(void)
  126. {
  127. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  128. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  129. RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
  130. /** Initializes the RCC Oscillators according to the specified parameters
  131. * in the RCC_OscInitTypeDef structure.
  132. */
  133. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  134. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  135. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  136. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  137. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  138. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  139. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  140. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  141. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  142. {
  143. Error_Handler();
  144. }
  145. /** Initializes the CPU, AHB and APB buses clocks
  146. */
  147. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  148. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  149. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  150. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  151. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  152. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  153. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  154. {
  155. Error_Handler();
  156. }
  157. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_RTC;
  158. PeriphClkInit.RTCClockSelection = RCC_RTCCLKSOURCE_LSI;
  159. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  160. {
  161. Error_Handler();
  162. }
  163. }
  164. /* USER CODE BEGIN 4 */
  165. char mac[100];
  166. char macStr_init[24][13]; // 长度为13的字符串加上字符串结束符'\0'
  167. uint16_t mac1[3];
  168. uint16_t mac2[3];
  169. uint16_t mac3[3];
  170. uint16_t mac4[3];
  171. void ReadSNname(void)
  172. {
  173. Flash_ReadBytes(&macsetptr->macCount,MacDbHeadAddr,1);//获取共存多少MAC(用于重启写入)
  174. if(macsetptr->macCount==0xFFFF)
  175. {
  176. macsetptr->macCount=0;
  177. }
  178. Flash_ReadBytes(mac1,Sn1InfoAddr,3);
  179. Flash_ReadBytes(mac2,Sn2InfoAddr,3);
  180. Flash_ReadBytes(mac3,Sn3InfoAddr,3);
  181. Flash_ReadBytes(mac4,Sn4InfoAddr,3);
  182. bin2hex(mac, (unsigned char *)mac1, 12);//将uint16数组转换成char数组 (FLASH中的字符串)
  183. bin2hex(mac+12, (unsigned char *)mac2, 12);//将uint16数组转换成char数组 (FLASH中的字符串)
  184. bin2hex(mac+24, (unsigned char *)mac3, 12);//将uint16数组转换成char数组 (FLASH中的字符串)
  185. bin2hex(mac+36, (unsigned char *)mac4, 12);//将uint16数组转换成char数组 (FLASH中的字符串)
  186. // 分割mac并放入macStr数组中
  187. for (int i = 0; i < 4; i++) {
  188. strncpy(macStr_init[i], mac + i * 12, 12); // 复制12个字符到macStr中
  189. macStr_init[i][12] = '\0'; // 添加字符串结束符
  190. }
  191. if(mac1[0]==0xFFFF)
  192. {
  193. //Todo
  194. }
  195. else
  196. {
  197. L1bd=true;
  198. sprintf(lockinfo.SN1name, "%s",macStr_init[0]+8 );
  199. }
  200. if(mac2[0]==0xFFFF)
  201. {
  202. //Todo
  203. }
  204. else
  205. {
  206. L2bd=true;
  207. sprintf(lockinfo.SN2name, "%s",macStr_init[1]+8 );
  208. }
  209. if(mac3[0]==0xFFFF)
  210. {
  211. //Todo
  212. }
  213. else
  214. {
  215. L3bd=true;
  216. sprintf(lockinfo.SN3name, "%s",macStr_init[2]+8 );
  217. }
  218. if(mac4[0]==0xFFFF)
  219. {
  220. //Todo
  221. }
  222. else
  223. {
  224. L4bd=true;
  225. sprintf(lockinfo.SN4name, "%s",macStr_init[3]+8 );
  226. }
  227. }
  228. /* USER CODE END 4 */
  229. /**
  230. * @brief Period elapsed callback in non blocking mode
  231. * @note This function is called when TIM1 interrupt took place, inside
  232. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  233. * a global variable "uwTick" used as application time base.
  234. * @param htim : TIM handle
  235. * @retval None
  236. */
  237. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  238. {
  239. /* USER CODE BEGIN Callback 0 */
  240. /* USER CODE END Callback 0 */
  241. if (htim->Instance == TIM1) {
  242. HAL_IncTick();
  243. }
  244. /* USER CODE BEGIN Callback 1 */
  245. if(!wdiFlag)
  246. {
  247. //喂看门狗
  248. TOGGLE_WDI_PIN(&htim2);
  249. }
  250. /* USER CODE END Callback 1 */
  251. }
  252. /**
  253. * @brief This function is executed in case of error occurrence.
  254. * @retval None
  255. */
  256. void Error_Handler(void)
  257. {
  258. /* USER CODE BEGIN Error_Handler_Debug */
  259. /* User can add his own implementation to report the HAL error return state */
  260. __disable_irq();
  261. while (1)
  262. {
  263. }
  264. /* USER CODE END Error_Handler_Debug */
  265. }
  266. #ifdef USE_FULL_ASSERT
  267. /**
  268. * @brief Reports the name of the source file and the source line number
  269. * where the assert_param error has occurred.
  270. * @param file: pointer to the source file name
  271. * @param line: assert_param error line source number
  272. * @retval None
  273. */
  274. void assert_failed(uint8_t *file, uint32_t line)
  275. {
  276. /* USER CODE BEGIN 6 */
  277. /* User can add his own implementation to report the file name and line number,
  278. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  279. /* USER CODE END 6 */
  280. }
  281. #endif /* USE_FULL_ASSERT */