main.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  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. #include "tim.h"
  48. /* USER CODE BEGIN Includes */
  49. #include "eeprom_flash.h"
  50. #include "eeprom_24c02.h"
  51. #include "var.h"
  52. #include "tasks.h"
  53. #include "can_process.h"
  54. #include "motor_control.h"
  55. #include "light_driver.h"
  56. #include "key_driver.h"
  57. #include "remain_distance.h"
  58. #include "protect_check.h"
  59. #include "fault_check.h"
  60. #include "app_loader.h"
  61. /* USER CODE END Includes */
  62. /* Private variables ---------------------------------------------------------*/
  63. /* USER CODE BEGIN PV */
  64. /* Private variables ---------------------------------------------------------*/
  65. /* USER CODE END PV */
  66. /* Private function prototypes -----------------------------------------------*/
  67. void SystemClock_Config(void);
  68. /* USER CODE BEGIN PFP */
  69. /* Private function prototypes -----------------------------------------------*/
  70. /* USER CODE END PFP */
  71. /* USER CODE BEGIN 0 */
  72. /* USER CODE END 0 */
  73. /**
  74. * @brief The application entry point.
  75. *
  76. * @retval None
  77. */
  78. int main(void)
  79. {
  80. /* USER CODE BEGIN 1 */
  81. IAP_Init();
  82. //Flash读保护设置
  83. #if DEBUG
  84. Flash_ReadProtection();
  85. #endif
  86. /* USER CODE END 1 */
  87. /* MCU Configuration----------------------------------------------------------*/
  88. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  89. HAL_Init();
  90. /* USER CODE BEGIN Init */
  91. /* USER CODE END Init */
  92. /* Configure the system clock */
  93. SystemClock_Config();
  94. /* USER CODE BEGIN SysInit */
  95. //Light驱动IO初始化
  96. LightDriver_Init();
  97. /* USER CODE END SysInit */
  98. /* Initialize all configured peripherals */
  99. MX_GPIO_Init();
  100. MX_TIM1_Init();
  101. MX_TIM3_Init();
  102. MX_DMA_Init();
  103. #if DEBUG
  104. MX_IWDG_Init();
  105. #endif
  106. MX_ADC1_Init();
  107. MX_ADC2_Init();
  108. MX_CAN_Init();
  109. MX_USART3_UART_Init();
  110. /* USER CODE BEGIN 2 */
  111. //ADC启动
  112. ADC_Start();
  113. HAL_Delay(20);
  114. //变量初始化
  115. Var_Init();
  116. //续航里程计算变量初始化
  117. RD_RemainDis_Init(MC_ConfigParam.WheelSize, MC_RunInfo.BusVoltage / 10);
  118. //传感器初始化
  119. MC_SensorInit();
  120. //EEPROM_24C02初始化
  121. EEPROM_24C02_Init(&I2C_Handle_EEPROM);
  122. //测试用于清除所有数据
  123. #if 0
  124. EEPROM_24C02_ClearData(&I2C_Handle_EEPROM, EEPROM_24C02_ADDR_FLAG, EEPROM_24C02_ADDR_END, 0xFF);
  125. EEPROM_Flash_Erase();
  126. #endif
  127. //EEPROM_Flash初始化
  128. EEPROM_Flash_Check();
  129. //EEPROM读取参数
  130. if(EEPROM_24C02_Check(&I2C_Handle_EEPROM) == ACK_FAIL)
  131. {
  132. //EEPROM读取数据失败处理
  133. //...
  134. }
  135. //MC控制初始化
  136. MC_Init();
  137. //外部设备在线检测
  138. #if 0
  139. MC_OnLineCheck(&DeviceOnLine_Status, &MC_ErrorCode);
  140. #else
  141. DeviceOnLine_Status.Status = 0x00;
  142. #endif
  143. //外部设备授权校验
  144. #if 0
  145. MC_DeviceCheck(&MC_ErrorCode);
  146. #endif
  147. //初始化完成标志
  148. IsInitFinish_Flag = TRUE;
  149. /* USER CODE END 2 */
  150. /* Infinite loop */
  151. /* USER CODE BEGIN WHILE */
  152. while (1)
  153. {
  154. /* USER CODE END WHILE */
  155. #if 1 // 测试运行周期
  156. static uint8_t RunPeriodTestCnt = 0;
  157. RunPeriodTestCnt++;
  158. if(RunPeriodTestCnt > 200)
  159. {
  160. RunPeriodTestCnt = 0;
  161. }
  162. #endif
  163. //CAN数据解析及处理
  164. CanRx_Process();
  165. //UART数据解析及处理
  166. UartRx_Process();
  167. //PBU通信状态检测
  168. MC_CanRxCheck_Process(MC_WorkMode, &MC_ControlCode.GearSt);
  169. //速度传感器采集及计算
  170. SpeedSensor_Process(&MC_SpeedSensorData, &MC_RunInfo.BikeSpeed, MC_ConfigParam.WheelSize);
  171. //检测变速信号
  172. GearSensor_Check(&IsGearSensorTrig_Flag);
  173. //检测刹车信号
  174. Break_Check(&IsBreakTrig_Flag);
  175. //ADC数据滑动均值滤波计算
  176. ADC_SensorData_Filt(ADC1_Result_Filt, ADC2_Result_Filt);
  177. //Light控制
  178. LightDriver_Process(MC_ControlCode.LightSwitch);
  179. //续航里程计算
  180. RD_CalculateRemainDis(MC_SpeedSensorData.WheelTurnCount, BMS_RunInfo.RC, BMS_RunInfo.SOC, MC_RunInfo.BusCurrent);
  181. RD_SaveAndUpdateInfo(MC_ControlCode.GearSt, MC_CalParam.AssistRunMode);
  182. //更新电机运行信息
  183. MC_RunInfo_Update();
  184. //计算运行总时间
  185. MC_RunTime_Cal(&MC_RunLog.RunTime);
  186. //根据踏频计算限流系数
  187. MC_CadenceLimit_K = MC_CadenceLimit_Cal(MC_RunInfo.Cadence, MC_RunInfo.BusCurrent, MC_RunInfo.T_Roil);
  188. #if 0
  189. //故障检测
  190. MC_Fault_Check_Process();
  191. //保护判断
  192. MC_Protect_Check_Process();
  193. #endif
  194. //发送故障码
  195. MC_SendErrorCode_Process(MC_ErrorCode);
  196. //配置模式,主动发送电机运行信息
  197. #if 1
  198. MC_SendRunInfo_Process(MC_WorkMode);
  199. #endif
  200. //定时发送传感器数据给TE
  201. MC_TE_SensorData_Process(MC_RunInfo.MotorSpeed, &MC_TE_SensorData);
  202. //看门狗清零
  203. #if DEBUG
  204. HAL_IWDG_Refresh(&hiwdg);
  205. #endif
  206. /* USER CODE BEGIN 3 */
  207. }
  208. /* USER CODE END 3 */
  209. }
  210. /**
  211. * @brief System Clock Configuration
  212. * @retval None
  213. */
  214. void SystemClock_Config(void)
  215. {
  216. RCC_OscInitTypeDef RCC_OscInitStruct;
  217. RCC_ClkInitTypeDef RCC_ClkInitStruct;
  218. RCC_PeriphCLKInitTypeDef PeriphClkInit;
  219. /**Initializes the CPU, AHB and APB busses clocks
  220. */
  221. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  222. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  223. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  224. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  225. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  226. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  227. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  228. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  229. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  230. {
  231. _Error_Handler(__FILE__, __LINE__);
  232. }
  233. /**Initializes the CPU, AHB and APB busses clocks
  234. */
  235. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  236. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  237. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  238. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  239. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  240. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  241. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  242. {
  243. _Error_Handler(__FILE__, __LINE__);
  244. }
  245. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_ADC;
  246. PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV6;
  247. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  248. {
  249. _Error_Handler(__FILE__, __LINE__);
  250. }
  251. /**Configure the Systick interrupt time
  252. */
  253. HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
  254. /**Configure the Systick
  255. */
  256. HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
  257. /* SysTick_IRQn interrupt configuration */
  258. HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
  259. }
  260. /* USER CODE BEGIN 4 */
  261. /* USER CODE END 4 */
  262. /**
  263. * @brief This function is executed in case of error occurrence.
  264. * @param file: The file name as string.
  265. * @param line: The line in file as a number.
  266. * @retval None
  267. */
  268. void _Error_Handler(char *file, int line)
  269. {
  270. /* USER CODE BEGIN Error_Handler_Debug */
  271. /* User can add his own implementation to report the HAL error return state */
  272. while(1)
  273. {
  274. }
  275. /* USER CODE END Error_Handler_Debug */
  276. }
  277. #ifdef USE_FULL_ASSERT
  278. /**
  279. * @brief Reports the name of the source file and the source line number
  280. * where the assert_param error has occurred.
  281. * @param file: pointer to the source file name
  282. * @param line: assert_param error line source number
  283. * @retval None
  284. */
  285. void assert_failed(uint8_t* file, uint32_t line)
  286. {
  287. /* USER CODE BEGIN 6 */
  288. /* User can add his own implementation to report the file name and line number,
  289. tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  290. /* USER CODE END 6 */
  291. }
  292. #endif /* USE_FULL_ASSERT */
  293. /**
  294. * @}
  295. */
  296. /**
  297. * @}
  298. */
  299. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/