main.c 13 KB

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