main.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  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 Menu_table menu;
  42. extern BtFrame btframe;
  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(&huart1); //开启U1中断
  94. HAL_UART_Receive_DMA(&huart1, U1recvBuff, BUFFER_SIZE);
  95. IDLE_DMA_UART(&huart4); //开启4G_DMA中断
  96. HAL_UART_Receive_DMA(&huart4, U4recvBuff, BUFFER_SIZE);
  97. RXNE_UART(&huart5); //开启BT接收中断
  98. START_PROCESS(); //SYETEM启动
  99. readLockStatusinit();
  100. #if openBT==1
  101. MBA32A_Init();
  102. #endif
  103. #if open4G==1
  104. reset4Gmodule = true;//ML307A_Init();
  105. #endif
  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. extern TT808 tt808;
  166. uint8_t smac[2]={0};
  167. void readLockStatusinit(void)
  168. {
  169. scanMac();
  170. uint16_t S1bd = read_flash_16(Sn1Addr);
  171. uint16_t S2bd = read_flash_16(Sn2Addr);
  172. uint16_t S3bd = read_flash_16(Sn3Addr);
  173. uint16_t S4bd = read_flash_16(Sn4Addr);
  174. uint32_t S1LS = read_flash_32(serialNum1Addr);
  175. uint32_t S2LS = read_flash_32(serialNum2Addr);
  176. uint32_t S3LS = read_flash_32(serialNum3Addr);
  177. uint32_t S4LS = read_flash_32(serialNum4Addr);
  178. smac[0]=S1bd>>8&0xff;
  179. smac[1]=S1bd&0xff;
  180. char SNconn[50];
  181. char *ptr = SNconn;
  182. ptr += sprintf(ptr, "AT+CONN=10100000");
  183. for (int i = 0; i < 2; i++) {
  184. ptr += sprintf(ptr, "%02X", smac[i]);
  185. }
  186. sprintf(ptr, "\r\n");//TCPvalue
  187. char SNF[50];
  188. char *ptr1 = SNF;
  189. ptr1 += sprintf(ptr1, "+CONNECTED:0,10100000");
  190. for (int i = 0; i < 2; i++) {
  191. ptr1 += sprintf(ptr1, "%02X", smac[i]);
  192. }
  193. //sprintf(ptr, "\r\n");//TCPvalue
  194. char SNname[2];
  195. char *ptr2 = SNname;
  196. for (int i = 0; i < 2; i++) {
  197. ptr2 += sprintf(ptr2, "%02X", smac[i]);
  198. }
  199. //sprintf(ptr, "\r\n");//TCPvalue
  200. char SND[50];
  201. char *ptr3 = SND;
  202. ptr3 += sprintf(ptr3, "+DISCONN:0,10100000");
  203. for (int i = 0; i < 2; i++) {
  204. ptr3 += sprintf(ptr3, "%02X",smac[i]);
  205. }
  206. if(S1bd!=0xFFFF)
  207. {
  208. L1bd=true;
  209. menu.SN1 = SNconn;//AT+CONN=*********\r\n
  210. menu.SN1F = SNF;//+CONNECTED:0,101000000010
  211. menu.SN1name = SNname;
  212. menu.SN1D = SND;
  213. scanMac();
  214. }
  215. if(S2bd!=0xFFFF)
  216. {
  217. L2bd=true;
  218. menu.SN2 = SNconn;//AT+CONN=*********\r\n
  219. menu.SN2F = SNF;//+CONNECTED:0,101000000010
  220. menu.SN2name = SNname;
  221. menu.SN2D = SND;
  222. scanMac();
  223. }
  224. if(S3bd!=0xFFFF)
  225. {
  226. L3bd=true;
  227. menu.SN3 = SNconn;//AT+CONN=*********\r\n
  228. menu.SN3F = SNF;//+CONNECTED:0,101000000010
  229. menu.SN3name = SNname;
  230. menu.SN3D = SND;
  231. scanMac();
  232. }
  233. if(S4bd!=0xFFFF)
  234. {
  235. L4bd=true;
  236. menu.SN4 = SNconn;//AT+CONN=*********\r\n
  237. menu.SN4F = SNF;//+CONNECTED:0,101000000010
  238. menu.SN4name = SNname;
  239. menu.SN4D = SND;
  240. scanMac();
  241. }
  242. if(S1LS==0xFFFFFFFF)
  243. {
  244. btframe.serialNum1 = 0x00000001;
  245. }
  246. else
  247. {
  248. btframe.serialNum1 = S1LS;
  249. }
  250. if(S2LS==0xFFFFFFFF)
  251. {
  252. btframe.serialNum2 = 0x00000001;
  253. }
  254. else
  255. {
  256. btframe.serialNum2 = S2LS;
  257. }
  258. if(S3LS==0xFFFFFFFF)
  259. {
  260. btframe.serialNum3 = 0x00000001;
  261. }
  262. else
  263. {
  264. btframe.serialNum3 = S3LS;
  265. }
  266. if(S4LS==0xFFFFFFFF)
  267. {
  268. btframe.serialNum4 = 0x00000001;
  269. }
  270. else
  271. {
  272. btframe.serialNum4 = S4LS;
  273. }
  274. S1 = read_flash_16(Sn1StatusAddr);
  275. S2 = read_flash_16(Sn2StatusAddr);
  276. S3 = read_flash_16(Sn3StatusAddr);
  277. S4 = read_flash_16(Sn4StatusAddr);
  278. if(S1==0x2222)
  279. {
  280. menu.S1sjf = 0x01;
  281. tt808.L1Lockstatus = LockStatusClose;
  282. }
  283. else if(S1==0x1111)
  284. {
  285. menu.S1sjf = 0x00;
  286. tt808.L1Lockstatus = LockStatusOpen;
  287. }
  288. else
  289. {
  290. menu.S1sjf=0xAA;
  291. tt808.L1Lockstatus = LockStatusNull;
  292. }
  293. if(S2==0x2222)
  294. {
  295. menu.S2sjf = 0x01;
  296. tt808.L2Lockstatus = LockStatusClose;
  297. }
  298. else if(S2==0x1111)
  299. {
  300. menu.S2sjf = 0x00;
  301. tt808.L2Lockstatus = LockStatusOpen;
  302. }
  303. else
  304. {
  305. menu.S2sjf=0xAA;
  306. tt808.L2Lockstatus = LockStatusNull;
  307. }
  308. if(S3==0x2222)
  309. {
  310. menu.S3sjf = 0x01;
  311. tt808.L3Lockstatus = LockStatusClose;
  312. }
  313. else if(S3==0x1111)
  314. {
  315. menu.S3sjf = 0x00;
  316. tt808.L3Lockstatus = LockStatusOpen;
  317. }
  318. else
  319. {
  320. menu.S3sjf=0xAA;
  321. tt808.L3Lockstatus = LockStatusNull;
  322. }
  323. if(S4==0x2222)
  324. {
  325. menu.S4sjf = 0x01;
  326. tt808.L4Lockstatus = LockStatusClose;
  327. }
  328. else if(S4==0x1111)
  329. {
  330. menu.S4sjf = 0x00;
  331. tt808.L4Lockstatus = LockStatusOpen;
  332. }
  333. else
  334. {
  335. menu.S4sjf=0xAA;
  336. tt808.L4Lockstatus = LockStatusNull;
  337. }
  338. refresh=true;
  339. }
  340. /* USER CODE END 4 */
  341. /**
  342. * @brief Period elapsed callback in non blocking mode
  343. * @note This function is called when TIM1 interrupt took place, inside
  344. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  345. * a global variable "uwTick" used as application time base.
  346. * @param htim : TIM handle
  347. * @retval None
  348. */
  349. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  350. {
  351. /* USER CODE BEGIN Callback 0 */
  352. /* USER CODE END Callback 0 */
  353. if (htim->Instance == TIM1) {
  354. HAL_IncTick();
  355. }
  356. /* USER CODE BEGIN Callback 1 */
  357. //喂看门狗
  358. TOGGLE_WDI_PIN(&htim2);
  359. /* USER CODE END Callback 1 */
  360. }
  361. /**
  362. * @brief This function is executed in case of error occurrence.
  363. * @retval None
  364. */
  365. void Error_Handler(void)
  366. {
  367. /* USER CODE BEGIN Error_Handler_Debug */
  368. /* User can add his own implementation to report the HAL error return state */
  369. __disable_irq();
  370. while (1)
  371. {
  372. }
  373. /* USER CODE END Error_Handler_Debug */
  374. }
  375. #ifdef USE_FULL_ASSERT
  376. /**
  377. * @brief Reports the name of the source file and the source line number
  378. * where the assert_param error has occurred.
  379. * @param file: pointer to the source file name
  380. * @param line: assert_param error line source number
  381. * @retval None
  382. */
  383. void assert_failed(uint8_t *file, uint32_t line)
  384. {
  385. /* USER CODE BEGIN 6 */
  386. /* User can add his own implementation to report the file name and line number,
  387. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  388. /* USER CODE END 6 */
  389. }
  390. #endif /* USE_FULL_ASSERT */