main.c 15 KB

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