main.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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(9600);
  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. /* USER CODE END 2 */
  108. /* Infinite loop */
  109. /* USER CODE BEGIN WHILE */
  110. while (1)
  111. {
  112. /* USER CODE END WHILE */
  113. //看门狗计数清零
  114. HAL_IWDG_Refresh(&hiwdg);
  115. //UART3数据解析
  116. Uart1_RxData_Process(&UART_RxBuff_Struct1, 200);
  117. Uart3_RxData_Process(&UART_RxBuff_Struct3, 200);
  118. //控制上下电
  119. PowerOnOff(&Power_mode);
  120. if(IsCtfFlag == TRUE)
  121. {
  122. //CAN数据解析
  123. uint16_t i = 0;
  124. for(i=0; i<CAN_ID_NUM; i++)
  125. {
  126. CAN_RxData_Process(&CAN_RxBuf_Struct[i], 200);
  127. }
  128. //运行LED指示
  129. LED_Run(&Led_MCU, 250);
  130. LED_Run(&Led_COM, 1000);
  131. }
  132. else
  133. {
  134. LED_Run(&Led_MCU, 100);
  135. LED_Run(&Led_COM, 100);
  136. }
  137. // BautrateSwitch Check
  138. if(KeyCheck() == 1)
  139. {
  140. MX_CAN_Init();
  141. }
  142. if(UART1_BaudrateSwitch == 2)
  143. {
  144. if((HAL_GetTick() - T_UART1_BaudrateSwitch)>50)
  145. {
  146. UART1_BaudrateSwitch = 1;
  147. MX_USART1_Reopen(38400);
  148. }
  149. }
  150. else if(UART1_BaudrateSwitch == 1)
  151. {
  152. if((HAL_GetTick() - T_UART1_BaudrateSwitch)>5000)
  153. {
  154. UART1_BaudrateSwitch = 0;
  155. MX_USART1_Reopen(9600);
  156. }
  157. }
  158. /* USER CODE BEGIN 3 */
  159. }
  160. /* USER CODE END 3 */
  161. }
  162. /**
  163. * @brief System Clock Configuration
  164. * @retval None
  165. */
  166. void SystemClock_Config(void)
  167. {
  168. RCC_OscInitTypeDef RCC_OscInitStruct;
  169. RCC_ClkInitTypeDef RCC_ClkInitStruct;
  170. RCC_PeriphCLKInitTypeDef PeriphClkInit;
  171. /**Initializes the CPU, AHB and APB busses clocks
  172. */
  173. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  174. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  175. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  176. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  177. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  178. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  179. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  180. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  181. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  182. {
  183. _Error_Handler(__FILE__, __LINE__);
  184. }
  185. /**Initializes the CPU, AHB and APB busses clocks
  186. */
  187. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  188. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  189. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  190. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  191. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  192. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  193. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  194. {
  195. _Error_Handler(__FILE__, __LINE__);
  196. }
  197. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_ADC;
  198. PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV6;
  199. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  200. {
  201. _Error_Handler(__FILE__, __LINE__);
  202. }
  203. /**Configure the Systick interrupt time
  204. */
  205. HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
  206. /**Configure the Systick
  207. */
  208. HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
  209. /* SysTick_IRQn interrupt configuration */
  210. HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
  211. }
  212. /* USER CODE BEGIN 4 */
  213. /* USER CODE END 4 */
  214. /**
  215. * @brief This function is executed in case of error occurrence.
  216. * @param file: The file name as string.
  217. * @param line: The line in file as a number.
  218. * @retval None
  219. */
  220. void _Error_Handler(char *file, int line)
  221. {
  222. /* USER CODE BEGIN Error_Handler_Debug */
  223. /* User can add his own implementation to report the HAL error return state */
  224. while(1)
  225. {
  226. }
  227. /* USER CODE END Error_Handler_Debug */
  228. }
  229. #ifdef USE_FULL_ASSERT
  230. /**
  231. * @brief Reports the name of the source file and the source line number
  232. * where the assert_param error has occurred.
  233. * @param file: pointer to the source file name
  234. * @param line: assert_param error line source number
  235. * @retval None
  236. */
  237. void assert_failed(uint8_t* file, uint32_t line)
  238. {
  239. /* USER CODE BEGIN 6 */
  240. /* User can add his own implementation to report the file name and line number,
  241. tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  242. /* USER CODE END 6 */
  243. }
  244. #endif /* USE_FULL_ASSERT */
  245. /**
  246. * @}
  247. */
  248. /**
  249. * @}
  250. */
  251. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/