main.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  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. /* USER CODE END Includes */
  53. /* Private variables ---------------------------------------------------------*/
  54. /* USER CODE BEGIN PV */
  55. /* Private variables ---------------------------------------------------------*/
  56. /* USER CODE END PV */
  57. /* Private function prototypes -----------------------------------------------*/
  58. void SystemClock_Config(void);
  59. /* USER CODE BEGIN PFP */
  60. /* Private function prototypes -----------------------------------------------*/
  61. /* USER CODE END PFP */
  62. /* USER CODE BEGIN 0 */
  63. /* USER CODE END 0 */
  64. /**
  65. * @brief The application entry point.
  66. *
  67. * @retval None
  68. */
  69. int main(void)
  70. {
  71. /* USER CODE BEGIN 1 */
  72. //APP跳转
  73. IAP_Init();
  74. //Falsh读保护
  75. //Flash_ReadProtection();
  76. /* USER CODE END 1 */
  77. /* MCU Configuration----------------------------------------------------------*/
  78. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  79. HAL_Init();
  80. /* USER CODE BEGIN Init */
  81. /* USER CODE END Init */
  82. /* Configure the system clock */
  83. SystemClock_Config();
  84. /* USER CODE BEGIN SysInit */
  85. /* USER CODE END SysInit */
  86. /* Initialize all configured peripherals */
  87. MX_GPIO_Init();
  88. MX_DMA_Init();
  89. MX_ADC1_Init();
  90. MX_CAN_Init();
  91. MX_IWDG_Init();
  92. MX_USART3_UART_Init();
  93. /* USER CODE BEGIN 2 */
  94. //采集适配器输入电压和P+输入电压
  95. ADC_Start();
  96. HAL_Delay(200);
  97. //根据P+输入电压确定是否开启PowerSwitch
  98. if(ADC1_Result[1] < 1000) //检测到P+电压小于18V开启
  99. {
  100. HAL_GPIO_WritePin(PowerSwitch_GPIO_Port, PowerSwitch_Pin, GPIO_PIN_SET);
  101. }
  102. /* USER CODE END 2 */
  103. /* Infinite loop */
  104. /* USER CODE BEGIN WHILE */
  105. while (1)
  106. {
  107. /* USER CODE END WHILE */
  108. //看门狗计数清零
  109. HAL_IWDG_Refresh(&hiwdg);
  110. //UART3数据解析
  111. Uart_RxData_Process(&UART_RxBuff_Struct3, 200);
  112. //CAN数据解析
  113. CAN_RxData_Process(&CAN_RxBuf_Struct_MC_BC, 200);
  114. CAN_RxData_Process(&CAN_RxBuf_Struct_MC_TO_CDL, 200);
  115. CAN_RxData_Process(&CAN_RxBuf_Struct_MC_TE_TO_CDL, 200);
  116. CAN_RxData_Process(&CAN_RxBuf_Struct_PBU_BC, 200);
  117. CAN_RxData_Process(&CAN_RxBuf_Struct_PBU_TO_CDL, 200);
  118. CAN_RxData_Process(&CAN_RxBuf_Struct_PBU_TE_TO_CDL, 200);
  119. CAN_RxData_Process(&CAN_RxBuf_Struct_BMS_BC, 200);
  120. CAN_RxData_Process(&CAN_RxBuf_Struct_BMS_TO_CDL, 200);
  121. CAN_RxData_Process(&CAN_RxBuf_Struct_HMI_BC, 200);
  122. CAN_RxData_Process(&CAN_RxBuf_Struct_HMI_TO_CDL, 200);
  123. //运行LED指示
  124. LED_Run(&Led_MCU, 250);
  125. LED_Run(&Led_COM, 1000);
  126. /* USER CODE BEGIN 3 */
  127. }
  128. /* USER CODE END 3 */
  129. }
  130. /**
  131. * @brief System Clock Configuration
  132. * @retval None
  133. */
  134. void SystemClock_Config(void)
  135. {
  136. RCC_OscInitTypeDef RCC_OscInitStruct;
  137. RCC_ClkInitTypeDef RCC_ClkInitStruct;
  138. RCC_PeriphCLKInitTypeDef PeriphClkInit;
  139. /**Initializes the CPU, AHB and APB busses clocks
  140. */
  141. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  142. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  143. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  144. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  145. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  146. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  147. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  148. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  149. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  150. {
  151. _Error_Handler(__FILE__, __LINE__);
  152. }
  153. /**Initializes the CPU, AHB and APB busses clocks
  154. */
  155. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  156. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  157. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  158. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  159. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  160. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  161. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  162. {
  163. _Error_Handler(__FILE__, __LINE__);
  164. }
  165. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_ADC;
  166. PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV6;
  167. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  168. {
  169. _Error_Handler(__FILE__, __LINE__);
  170. }
  171. /**Configure the Systick interrupt time
  172. */
  173. HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
  174. /**Configure the Systick
  175. */
  176. HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
  177. /* SysTick_IRQn interrupt configuration */
  178. HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
  179. }
  180. /* USER CODE BEGIN 4 */
  181. /* USER CODE END 4 */
  182. /**
  183. * @brief This function is executed in case of error occurrence.
  184. * @param file: The file name as string.
  185. * @param line: The line in file as a number.
  186. * @retval None
  187. */
  188. void _Error_Handler(char *file, int line)
  189. {
  190. /* USER CODE BEGIN Error_Handler_Debug */
  191. /* User can add his own implementation to report the HAL error return state */
  192. while(1)
  193. {
  194. }
  195. /* USER CODE END Error_Handler_Debug */
  196. }
  197. #ifdef USE_FULL_ASSERT
  198. /**
  199. * @brief Reports the name of the source file and the source line number
  200. * where the assert_param error has occurred.
  201. * @param file: pointer to the source file name
  202. * @param line: assert_param error line source number
  203. * @retval None
  204. */
  205. void assert_failed(uint8_t* file, uint32_t line)
  206. {
  207. /* USER CODE BEGIN 6 */
  208. /* User can add his own implementation to report the file name and line number,
  209. tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  210. /* USER CODE END 6 */
  211. }
  212. #endif /* USE_FULL_ASSERT */
  213. /**
  214. * @}
  215. */
  216. /**
  217. * @}
  218. */
  219. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/