main.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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_USART3_UART_Init();
  94. /* USER CODE BEGIN 2 */
  95. CAN_RxBuf_Init();
  96. //采集适配器输入电压和P+输入电压
  97. ADC_Start();
  98. HAL_Delay(200);
  99. //根据P+输入电压确定是否开启PowerSwitch
  100. if(ADC1_Result[1] < 1000) //检测到P+电压小于18V开启
  101. {
  102. HAL_GPIO_WritePin(PowerSwitch_GPIO_Port, PowerSwitch_Pin, GPIO_PIN_SET);
  103. }
  104. //读取设备物理ID和授权码
  105. IsCtfFlag = Read_Ctf_Info();
  106. /* USER CODE END 2 */
  107. /* Infinite loop */
  108. /* USER CODE BEGIN WHILE */
  109. while (1)
  110. {
  111. /* USER CODE END WHILE */
  112. //看门狗计数清零
  113. HAL_IWDG_Refresh(&hiwdg);
  114. //UART3数据解析
  115. Uart_RxData_Process(&UART_RxBuff_Struct3, 200);
  116. if(IsCtfFlag == TRUE)
  117. {
  118. //CAN数据解析
  119. uint16_t i = 0;
  120. for(i=0; i<CAN_ID_NUM; i++)
  121. {
  122. CAN_RxData_Process(&CAN_RxBuf_Struct[i], 200);
  123. }
  124. //运行LED指示
  125. LED_Run(&Led_MCU, 250);
  126. LED_Run(&Led_COM, 1000);
  127. }
  128. else
  129. {
  130. LED_Run(&Led_MCU, 100);
  131. LED_Run(&Led_COM, 100);
  132. }
  133. /* USER CODE BEGIN 3 */
  134. }
  135. /* USER CODE END 3 */
  136. }
  137. /**
  138. * @brief System Clock Configuration
  139. * @retval None
  140. */
  141. void SystemClock_Config(void)
  142. {
  143. RCC_OscInitTypeDef RCC_OscInitStruct;
  144. RCC_ClkInitTypeDef RCC_ClkInitStruct;
  145. RCC_PeriphCLKInitTypeDef PeriphClkInit;
  146. /**Initializes the CPU, AHB and APB busses clocks
  147. */
  148. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  149. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  150. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  151. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  152. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  153. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  154. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  155. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  156. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  157. {
  158. _Error_Handler(__FILE__, __LINE__);
  159. }
  160. /**Initializes the CPU, AHB and APB busses clocks
  161. */
  162. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  163. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  164. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  165. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  166. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  167. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  168. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  169. {
  170. _Error_Handler(__FILE__, __LINE__);
  171. }
  172. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_ADC;
  173. PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV6;
  174. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  175. {
  176. _Error_Handler(__FILE__, __LINE__);
  177. }
  178. /**Configure the Systick interrupt time
  179. */
  180. HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
  181. /**Configure the Systick
  182. */
  183. HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
  184. /* SysTick_IRQn interrupt configuration */
  185. HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
  186. }
  187. /* USER CODE BEGIN 4 */
  188. /* USER CODE END 4 */
  189. /**
  190. * @brief This function is executed in case of error occurrence.
  191. * @param file: The file name as string.
  192. * @param line: The line in file as a number.
  193. * @retval None
  194. */
  195. void _Error_Handler(char *file, int line)
  196. {
  197. /* USER CODE BEGIN Error_Handler_Debug */
  198. /* User can add his own implementation to report the HAL error return state */
  199. while(1)
  200. {
  201. }
  202. /* USER CODE END Error_Handler_Debug */
  203. }
  204. #ifdef USE_FULL_ASSERT
  205. /**
  206. * @brief Reports the name of the source file and the source line number
  207. * where the assert_param error has occurred.
  208. * @param file: pointer to the source file name
  209. * @param line: assert_param error line source number
  210. * @retval None
  211. */
  212. void assert_failed(uint8_t* file, uint32_t line)
  213. {
  214. /* USER CODE BEGIN 6 */
  215. /* User can add his own implementation to report the file name and line number,
  216. tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  217. /* USER CODE END 6 */
  218. }
  219. #endif /* USE_FULL_ASSERT */
  220. /**
  221. * @}
  222. */
  223. /**
  224. * @}
  225. */
  226. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/