main.c 8.0 KB

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