main.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  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 "power12V_driver.h"
  57. #include "key_driver.h"
  58. #include "remain_distance.h"
  59. #include "protect_check.h"
  60. #include "fault_check.h"
  61. #include "app_loader.h"
  62. #include "stm32fxx_STUlib.h"
  63. #include "ICM20600.h"
  64. #include "ctf_process.h"
  65. #include "log_save.h"
  66. #include "flash_read_protection.h"
  67. /* USER CODE END Includes */
  68. /* Private variables ---------------------------------------------------------*/
  69. /* USER CODE BEGIN PV */
  70. /* Private variables ---------------------------------------------------------*/
  71. uint8_t TimeBase_10ms=0;
  72. /* USER CODE END PV */
  73. /* Private function prototypes -----------------------------------------------*/
  74. void SystemClock_Config(void);
  75. /* USER CODE BEGIN PFP */
  76. /* Private function prototypes -----------------------------------------------*/
  77. void STU_TimeBase(void);
  78. /* USER CODE END PFP */
  79. /* USER CODE BEGIN 0 */
  80. /* USER CODE END 0 */
  81. /**
  82. * @brief The application entry point.
  83. *
  84. * @retval None
  85. */
  86. int main(void)
  87. {
  88. /* USER CODE BEGIN 1 */
  89. IAP_Init(); //Bootloader 200ms
  90. //Flash读保护设置
  91. #if 1
  92. Flash_ReadProtection();
  93. #endif
  94. /* USER CODE END 1 */
  95. /* MCU Configuration----------------------------------------------------------*/
  96. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  97. HAL_Init();
  98. /* USER CODE BEGIN Init */
  99. /* USER CODE END Init */
  100. /* Configure the system clock */
  101. SystemClock_Config();
  102. /* USER CODE BEGIN SysInit */
  103. //Light驱动IO初始化
  104. LightDriver_Init();
  105. /* USER CODE END SysInit */
  106. /* Initialize all configured peripherals */
  107. MX_GPIO_Init();
  108. MX_TIM1_Init();
  109. MX_TIM2_Init();
  110. MX_TIM3_Init();
  111. MX_DMA_Init();
  112. MX_ADC1_Init();
  113. MX_ADC2_Init();
  114. MX_CAN_Init();
  115. MX_USART3_UART_Init();
  116. STU_InitRunTimeChecks();
  117. /* USER CODE BEGIN 2 */
  118. //ADC启动
  119. ADC_Start();
  120. HAL_Delay(20);//20ms
  121. //定时器2启动计数
  122. HAL_TIM_Base_Start(&htim2);
  123. //变量初始化
  124. Var_Init();
  125. //看门狗初始化
  126. #if DEBUG
  127. MX_IWDG_Init();
  128. #endif
  129. //传感器初始化
  130. MC_SensorInit();
  131. //EEPROM_24C02初始化
  132. EEPROM_24C02_Init(&I2C_Handle_EEPROM);
  133. //测试用于清除所有数据
  134. #if 0
  135. EEPROM_24C02_ClearData(&I2C_Handle_EEPROM, EEPROM_24C02_ADDR_FLAG, EEPROM_24C02_ADDR_END, 0xFF);
  136. EEPROM_Flash_Erase(EEPROM_FLASH_BEGIN_ADDRESS, EEPROM_FLASH_END_ADDRESS);
  137. #endif
  138. //EEPROM_Flash初始化
  139. EEPROM_Flash_Check();//第一次运行 113ms,正常运行 1ms
  140. //EEPROM读取参数
  141. if(EEPROM_24C02_Check(&I2C_Handle_EEPROM) == ACK_FAIL)//第一次运行 2650ms,正常运行 275ms
  142. {
  143. //EEPROM读取数据失败处理
  144. //...
  145. }
  146. //掉电临时数据搬移到24C02
  147. IsPowerOffDataBkp_SaveFlag = EEPROM_Flash_TempCheck();
  148. SavePowerOffBakData(&I2C_Handle_EEPROM, IsPowerOffDataBkp_SaveFlag);//75ms
  149. //擦除临时掉电数据存储区域为0xFF
  150. EEPROM_Flash_Erase(EEPROM_FLASH_ADDR_TEMP_BEGIN_ADDRESS, EEPROM_FLASH_ADDR_TEMP_END_ADDRESS);//100ms
  151. //MC控制初始化
  152. MC_Init();//339ms
  153. //检查电机是否授权
  154. #if 0
  155. Read_Ctf_Info(&MC_ErrorCode);
  156. #endif
  157. //外部设备授权校验
  158. #if 0
  159. #if 1 //校验电池
  160. MC_DeviceCheck(&BMS_CheckInfo, &MC_ErrorCode);
  161. #endif
  162. #if 0 //校验按键
  163. MC_DeviceCheck(&PBU_CheckInfo, &MC_ErrorCode);
  164. #endif
  165. #if 1 //校验仪表
  166. MC_DeviceCheck(&HMI_CheckInfo, &MC_ErrorCode);
  167. #endif
  168. #endif
  169. //初始化完成标志
  170. IsInitFinish_Flag = TRUE;
  171. //定制特殊化处理
  172. MC_ConfigParam1.UV_Protect_TH = 2950;
  173. /* USER CODE END 2 */
  174. /* Infinite loop */
  175. /* USER CODE BEGIN WHILE */
  176. while (1)
  177. {
  178. /* USER CODE END WHILE */
  179. #if 1 // 测试运行周期
  180. static uint8_t RunPeriodTestCnt = 0;
  181. RunPeriodTestCnt++;
  182. if(RunPeriodTestCnt > 200)
  183. {
  184. RunPeriodTestCnt = 0;
  185. }
  186. #endif
  187. //CAN数据解析及处理
  188. CanRx_Process();
  189. //UART数据解析及处理
  190. UartRx_Process();
  191. //CAN设备通信状态检测
  192. MC_CanRxCheck_Process(MC_ConfigParam1.NoPBU_Flag, PBU_ConfigParam.NoHMI_Flag, MC_WorkMode, &MC_ControlCode.GearSt);
  193. //UART设备通信状态检测
  194. MC_UartRxCheck_Process();
  195. //速度传感器采集及计算
  196. if(MC_ConfigParam1.No_SpeedSensor_Flag != MC_SUPPORT_ENABLE)
  197. {
  198. SpeedSensor_Process(&MC_SpeedSensorData, &MC_RunInfo.BikeSpeed, MC_ConfigParam1.WheelSize + MC_ConfigParam1.WheelSizeAdj, (MC_ConfigParam1.SpeedSensorPoles == 0) ? 1: MC_ConfigParam1.SpeedSensorPoles);
  199. }
  200. else
  201. {
  202. if(MC_RunInfo.CadenceDir != MC_Cadence_Forward) //脚踏向后或停止时,采用电机转速
  203. {
  204. SpeedCal_ByCadence(MC_RunInfo.MotorSpeed / 11, &MC_SpeedSensorData.Speed_Data, MC_ConfigParam1.TeethNum_F, MC_ConfigParam1.TeethNum_B, MC_ConfigParam1.WheelSize + MC_ConfigParam1.WheelSizeAdj, &MC_RunInfo.BikeSpeed);
  205. }
  206. else //脚踏向前时,取最高值
  207. {
  208. SpeedCal_ByCadence((MC_RunInfo.MotorSpeed / 11 > MC_RunInfo.Cadence) ? MC_RunInfo.MotorSpeed / 11 : MC_RunInfo.Cadence, &MC_SpeedSensorData.Speed_Data, MC_ConfigParam1.TeethNum_F, MC_ConfigParam1.TeethNum_B, MC_ConfigParam1.WheelSize + MC_ConfigParam1.WheelSizeAdj, &MC_RunInfo.BikeSpeed);
  209. }
  210. }
  211. //检测变速信号
  212. GearSensor_Check(&IsGearSensorTrig_Flag);
  213. //检测刹车信号
  214. Break_Check(&IsBreakTrig_Flag);
  215. //续航里程计算
  216. do
  217. {
  218. static uint8_t RD_RemainDis_InitFinished = 0x00;
  219. if(RD_RemainDis_InitFinished == 0x00)
  220. {
  221. if((IsComOK_BMS.IsOK_Flag == TRUE) || (HAL_GetTick() > 10000))//初始化续航计算相关变量
  222. {
  223. //续航里程计算变量初始化
  224. RD_RemainDis_Init(MC_ConfigParam1.WheelSize + MC_ConfigParam1.WheelSizeAdj, IsComOK_BMS.IsOK_Flag, MC_RunInfo.BusVoltage / 10, MC_MotorParam.Rate_Voltage, BMS_RunInfo.RC);
  225. RD_RemainDis_InitFinished = 0x01;
  226. }
  227. }
  228. else
  229. {
  230. RD_CalculateRemainDis(MC_SpeedSensorData.WheelTurnCount, BMS_RunInfo.RC, BMS_RunInfo.SOC, MC_RunInfo.BusCurrent);
  231. RD_SaveAndUpdateInfo(MC_ControlCode.GearSt, MC_CalParam.AssistRunMode);
  232. }
  233. }while(0);
  234. //更新电机运行信息
  235. MC_RunInfo_Update();
  236. //计算运行总时间
  237. MC_RunTime_Cal(&MC_RunLog1.RunTime);
  238. //温度历史数据记录
  239. MC_TemperatureLogProcess();
  240. //根据踏频计算限流系数
  241. MC_CadenceLimit_K = MC_CadenceLimit_Cal(MC_RunInfo.Cadence, MC_RunInfo.BusCurrent, MC_RunInfo.T_Coil);
  242. //Flash数据存储更新处理
  243. if(MC_CalParam.Foc_Flag == RESET)
  244. {
  245. EEPROM_Flash_DataUpdate(&IsFlashSaveDataUpdate);
  246. }
  247. //故障日志存储更新处理
  248. if(MC_CalParam.Foc_Flag == RESET)
  249. {
  250. ErrorLogSave_Process(&MC_ErrorLogSaveInfo, &IsErrorLogSaveInfoUpdateFlag);
  251. RunLogSave_Process(&RunLogSaveIndex);
  252. }
  253. #if 1
  254. //故障检测
  255. MC_Fault_Check_Process();
  256. //保护判断
  257. MC_Protect_Check_Process();
  258. #endif
  259. //发送故障码
  260. MC_SendErrorCode_Process(MC_ErrorCode);
  261. //配置模式,主动发送电机运行信息
  262. #if 1
  263. MC_SendRunInfo_Process(MC_WorkMode);
  264. #endif
  265. //定时发送传感器数据给TE
  266. MC_TE_SensorData_Process(&MC_TE_SensorData);
  267. //指拨模式计算函数
  268. SpdProportion_calculate();
  269. //车姿态处理函数
  270. BikeAttitude_Process();
  271. //MCU自检
  272. STU_TimeBase();
  273. STU_DoRunTimeChecks();
  274. //看门狗清零
  275. #if DEBUG
  276. HAL_IWDG_Refresh(&hiwdg);
  277. #endif
  278. /* USER CODE BEGIN 3 */
  279. }
  280. /* USER CODE END 3 */
  281. }
  282. /**
  283. * @brief System Clock Configuration
  284. * @retval None
  285. */
  286. void SystemClock_Config(void)
  287. {
  288. RCC_OscInitTypeDef RCC_OscInitStruct;
  289. RCC_ClkInitTypeDef RCC_ClkInitStruct;
  290. RCC_PeriphCLKInitTypeDef PeriphClkInit;
  291. /**Initializes the CPU, AHB and APB busses clocks
  292. */
  293. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
  294. RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  295. RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  296. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  297. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  298. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  299. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  300. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  301. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  302. {
  303. _Error_Handler(__FILE__, __LINE__);
  304. }
  305. /**Initializes the CPU, AHB and APB busses clocks
  306. */
  307. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  308. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  309. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  310. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  311. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  312. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  313. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  314. {
  315. _Error_Handler(__FILE__, __LINE__);
  316. }
  317. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_ADC;
  318. PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV6;
  319. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  320. {
  321. _Error_Handler(__FILE__, __LINE__);
  322. }
  323. /**Configure the Systick interrupt time
  324. */
  325. HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
  326. /**Configure the Systick
  327. */
  328. HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
  329. /* SysTick_IRQn interrupt configuration */
  330. HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
  331. }
  332. /* USER CODE BEGIN 4 */
  333. void STU_TimeBase(void)
  334. {
  335. STU_TestStatus ram_test;
  336. if(TimeBase_10ms >= 10 )
  337. {
  338. TimeBase_10ms = 0;
  339. TimeBaseFlag = 0xAAAAAAAAuL;
  340. TimeBaseFlagInv = 0x55555555uL;
  341. /*--------------------------------------------------------------------------*/
  342. /* --------------------- RAM functional test -------------------*/
  343. /*--------------------------------------------------------------------------*/
  344. __disable_irq();
  345. ram_test = STU_RamRun();
  346. __enable_irq();
  347. switch ( ram_test )
  348. {
  349. case TEST_RUNNING:
  350. break;
  351. case TEST_OK:
  352. break;
  353. case TEST_FAILURE:
  354. case CLASS_C_DATA_FAIL:
  355. default:
  356. FailSafePOR();
  357. break;
  358. }
  359. }
  360. }
  361. /* USER CODE END 4 */
  362. /**
  363. * @brief This function is executed in case of error occurrence.
  364. * @param file: The file name as string.
  365. * @param line: The line in file as a number.
  366. * @retval None
  367. */
  368. void _Error_Handler(char *file, int line)
  369. {
  370. /* USER CODE BEGIN Error_Handler_Debug */
  371. /* User can add his own implementation to report the HAL error return state */
  372. while(1)
  373. {
  374. MC_MotorStop(&MC_StarFlag);
  375. Power12V_Driver_Process(RESET);
  376. Disable_PwmGpio_Out();
  377. //Debug,输出当前错误信息
  378. #if 1
  379. uint8_t PrintData[32] = {0,};
  380. memcpy((uint8_t*)PrintData, file, strlen(file));
  381. memcpy((uint8_t*)(PrintData + strlen(file)), (uint8_t*)" , ", 3);
  382. memcpy((uint8_t*)(PrintData + strlen(file) + 3), &line, sizeof(line));
  383. SendData(ID_MC_BC, MODE_REPORT , 0xFF20, PrintData);
  384. HAL_Delay(200);
  385. #endif
  386. }
  387. /* USER CODE END Error_Handler_Debug */
  388. }
  389. #ifdef USE_FULL_ASSERT
  390. /**
  391. * @brief Reports the name of the source file and the source line number
  392. * where the assert_param error has occurred.
  393. * @param file: pointer to the source file name
  394. * @param line: assert_param error line source number
  395. * @retval None
  396. */
  397. void assert_failed(uint8_t* file, uint32_t line)
  398. {
  399. /* USER CODE BEGIN 6 */
  400. /* User can add his own implementation to report the file name and line number,
  401. tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  402. /* USER CODE END 6 */
  403. }
  404. #endif /* USE_FULL_ASSERT */
  405. /**
  406. * @}
  407. */
  408. /**
  409. * @}
  410. */
  411. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/