main.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. /**
  2. ******************************************************************************
  3. * @file : main.c
  4. * @brief : Main program body
  5. ******************************************************************************
  6. ** This notice applies to any and all portions of this file
  7. * that are not between comment pairs USER CODE BEGIN and
  8. * USER CODE END. Other portions of this file, whether
  9. * inserted by the user or by software development tools
  10. * are owned by their respective copyright owners.
  11. *
  12. * COPYRIGHT(c) 2019 STMicroelectronics
  13. *
  14. * Redistribution and use in source and binary forms, with or without modification,
  15. * are permitted provided that the following conditions are met:
  16. * 1. Redistributions of source code must retain the above copyright notice,
  17. * this list of conditions and the following disclaimer.
  18. * 2. Redistributions in binary form must reproduce the above copyright notice,
  19. * this list of conditions and the following disclaimer in the documentation
  20. * and/or other materials provided with the distribution.
  21. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  22. * may be used to endorse or promote products derived from this software
  23. * without specific prior written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  26. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  28. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  29. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  31. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  32. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  33. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  34. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  35. *
  36. ******************************************************************************
  37. */
  38. /* Includes ------------------------------------------------------------------*/
  39. #include "main.h"
  40. #include "stm32f1xx_hal.h"
  41. #include "adc.h"
  42. #include "can.h"
  43. #include "dma.h"
  44. #include "iwdg.h"
  45. #include "usart.h"
  46. #include "gpio.h"
  47. /* USER CODE BEGIN Includes */
  48. #include "uart_process.h"
  49. #include "can_process.h"
  50. #include "flash_read_protection.h"
  51. #include "Update.h"
  52. #include "ctf_process.h"
  53. /* USER CODE END Includes */
  54. /* Private variables ---------------------------------------------------------*/
  55. /* USER CODE BEGIN PV */
  56. /* Private variables ---------------------------------------------------------*/
  57. /* USER CODE END PV */
  58. /* Private function prototypes -----------------------------------------------*/
  59. void SystemClock_Config(void);
  60. /* USER CODE BEGIN PFP */
  61. /* Private function prototypes -----------------------------------------------*/
  62. /* USER CODE END PFP */
  63. /* USER CODE BEGIN 0 */
  64. /* USER CODE END 0 */
  65. /**
  66. * @brief The application entry point.
  67. *
  68. * @retval None
  69. */
  70. int main(void)
  71. {
  72. /* USER CODE BEGIN 1 */
  73. //APP跳转
  74. IAP_Init();
  75. //Falsh读保护
  76. //Flash_ReadProtection();
  77. /* USER CODE END 1 */
  78. /* MCU Configuration----------------------------------------------------------*/
  79. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  80. HAL_Init();
  81. /* USER CODE BEGIN Init */
  82. /* USER CODE END Init */
  83. /* Configure the system clock */
  84. SystemClock_Config();
  85. /* USER CODE BEGIN SysInit */
  86. /* USER CODE END SysInit */
  87. /* Initialize all configured peripherals */
  88. MX_GPIO_Init();
  89. MX_DMA_Init();
  90. MX_ADC1_Init();
  91. MX_CAN_Init();
  92. MX_IWDG_Init();
  93. MX_USART1_UART_Init(1200);
  94. MX_USART3_UART_Init();
  95. /* USER CODE BEGIN 2 */
  96. CAN_RxBuf_Init();
  97. //采集适配器输入电压和P+输入电压
  98. ADC_Start();
  99. HAL_Delay(200);
  100. //根据P+输入电压确定是否开启PowerSwitch
  101. if(ADC1_Result[1] < 1000) //检测到P+电压小于18V开启
  102. {
  103. HAL_GPIO_WritePin(PowerSwitch_GPIO_Port, PowerSwitch_Pin, GPIO_PIN_SET);
  104. }
  105. //读取设备物理ID和授权码
  106. IsCtfFlag = Read_Ctf_Info();
  107. Transmit_UARTOrCAN = 2;
  108. HAL_Delay(100);
  109. HAL_GPIO_WritePin(CommSwitch_GPIO_Port, CommSwitch_Pin1, GPIO_PIN_SET);
  110. HAL_GPIO_WritePin(CommSwitch_GPIO_Port, CommSwitch_Pin2, GPIO_PIN_SET);
  111. /* USER CODE END 2 */
  112. /* Infinite loop */
  113. /* USER CODE BEGIN WHILE */
  114. while (1)
  115. {
  116. /* USER CODE END WHILE */
  117. //看门狗计数清零
  118. HAL_IWDG_Refresh(&hiwdg);
  119. //UART3/UART1数据解析
  120. Uart1_RxData_Process(&UART_RxBuff_Struct1, 2000);
  121. Uart3_RxData_Process(&UART_RxBuff_Struct3, 2000);
  122. //控制上下电
  123. PowerOnOff(&Power_mode);
  124. if(IsCtfFlag == TRUE)
  125. {
  126. //CAN数据解析
  127. uint16_t i = 0;
  128. for(i=0; i<CAN_ID_NUM; i++)
  129. {
  130. CAN_RxData_Process(&CAN_RxBuf_Struct[i], 200);
  131. }
  132. //运行LED指示
  133. LED_Run(&Led_MCU, 250);
  134. LED_Run(&Led_COM, 1000);
  135. }
  136. else
  137. {
  138. LED_Run(&Led_MCU, 100);
  139. LED_Run(&Led_COM, 100);
  140. }
  141. // BautrateSwitch Check
  142. /*if(KeyCheck() == 1)
  143. {
  144. MX_CAN_Init();
  145. }*/
  146. //MsgModeCheck(); //CAN、UART模式切换
  147. UART1_BaudrateCheck();//UART波特率切换
  148. /* USER CODE BEGIN 3 */
  149. }
  150. /* USER CODE END 3 */
  151. }
  152. /**
  153. * @brief System Clock Configuration
  154. * @retval None
  155. */
  156. void SystemClock_Config(void)
  157. {
  158. RCC_OscInitTypeDef RCC_OscInitStruct;
  159. RCC_ClkInitTypeDef RCC_ClkInitStruct;
  160. RCC_PeriphCLKInitTypeDef PeriphClkInit;
  161. /**Initializes the CPU, AHB and APB busses clocks
  162. */
  163. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  164. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  165. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  166. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  167. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  168. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  169. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  170. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  171. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  172. {
  173. _Error_Handler(__FILE__, __LINE__);
  174. }
  175. /**Initializes the CPU, AHB and APB busses clocks
  176. */
  177. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  178. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  179. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  180. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  181. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  182. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  183. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  184. {
  185. _Error_Handler(__FILE__, __LINE__);
  186. }
  187. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_ADC;
  188. PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV6;
  189. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  190. {
  191. _Error_Handler(__FILE__, __LINE__);
  192. }
  193. /**Configure the Systick interrupt time
  194. */
  195. HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
  196. /**Configure the Systick
  197. */
  198. HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
  199. /* SysTick_IRQn interrupt configuration */
  200. HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
  201. }
  202. /* USER CODE BEGIN 4 */
  203. /* USER CODE END 4 */
  204. /**
  205. * @brief This function is executed in case of error occurrence.
  206. * @param file: The file name as string.
  207. * @param line: The line in file as a number.
  208. * @retval None
  209. */
  210. void _Error_Handler(char *file, int line)
  211. {
  212. /* USER CODE BEGIN Error_Handler_Debug */
  213. /* User can add his own implementation to report the HAL error return state */
  214. while(1)
  215. {
  216. }
  217. /* USER CODE END Error_Handler_Debug */
  218. }
  219. #ifdef USE_FULL_ASSERT
  220. /**
  221. * @brief Reports the name of the source file and the source line number
  222. * where the assert_param error has occurred.
  223. * @param file: pointer to the source file name
  224. * @param line: assert_param error line source number
  225. * @retval None
  226. */
  227. void assert_failed(uint8_t* file, uint32_t line)
  228. {
  229. /* USER CODE BEGIN 6 */
  230. /* User can add his own implementation to report the file name and line number,
  231. tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  232. /* USER CODE END 6 */
  233. }
  234. #endif /* USE_FULL_ASSERT */
  235. /**
  236. * @}
  237. */
  238. /**
  239. * @}
  240. */
  241. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/