| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- /* USER CODE BEGIN Header */
- /**
- ******************************************************************************
- * @file : main.c
- * @brief : Main program body
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2026 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- */
- #define ONECHIP_GLOBAL_DEF_FLAG
- /* USER CODE END Header */
- /* Includes ------------------------------------------------------------------*/
- #include "main.h"
- #include "adc.h"
- #include "dma.h"
- #include "i2c.h"
- #include "tim.h"
- #include "usart.h"
- #include "gpio.h"
- /* Private includes ----------------------------------------------------------*/
- /* USER CODE BEGIN Includes */
- #include "onechip_include_header.h"
- /* USER CODE END Includes */
- /* Private typedef -----------------------------------------------------------*/
- /* USER CODE BEGIN PTD */
- #define SAMPLE_TIME 10000
- /* USER CODE END PTD */
- /* Private define ------------------------------------------------------------*/
- /* USER CODE BEGIN PD */
- /* USER CODE END PD */
- /* Private macro -------------------------------------------------------------*/
- /* USER CODE BEGIN PM */
- /* USER CODE END PM */
- /* Private variables ---------------------------------------------------------*/
- /* USER CODE BEGIN PV */
- /* USER CODE END PV */
- /* Private function prototypes -----------------------------------------------*/
- void SystemClock_Config(void);
- /* USER CODE BEGIN PFP */
- /* USER CODE END PFP */
- /* Private user code ---------------------------------------------------------*/
- /* USER CODE BEGIN 0 */
- /* 定时器2溢出中断回调函数 */
- void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
- {
- /* 检查触发中断的定时器是否为 TIM2 */
- if (htim->Instance == TIM2) {
- sysinf.ms_conter++;
- if(sysinf.ms_conter%1000 == 5){
- sysinf.resendFlag = 1;
- }
- if(sysinf.ms_conter%10 == 0){
- sysinf.ms10_flag = 1;
- sysinf.conter10ms++;
- if(sysinf.ms_conter%1000 == 0){
- sysinf.s1_flag = 1;
- if(sysinf.ms_conter%SAMPLE_TIME == 0){
- sysinf.samp_flag = 1;
- }
-
- if(sysinf.ms_conter%10000 == 0){
- sysinf.s10_flag = 1;
- }
- }
- Motor_mix_work();
- }
- if(sysinf.ms_conter%100 == 1){
- float temp = getADC_Chanel_value(0);
- sysinf.heaterMaster.pid.realtemp = temp + sysinf.heaterMaster.offset;
- heater_work(&sysinf.heaterMaster);
- }
- if(sysinf.ms_conter%100 == 2){
- lysis_work();
- }
- if(sysinf.ms_conter%100 == 1){
- sysinf.deal_espFlag=1;
- }
- if(sysinf.ms_conter%50 == 0){
- light_ctrl();
- if(sysinf.ms_conter%(OFFLINE_TIME/2) == 0){
- sysinf.upheart_flag = 1;
- }
- }
-
- }
- }
- /* USER CODE END 0 */
- /**
- * @brief The application entry point.
- * @retval int
- */
- int main(void)
- {
- /* USER CODE BEGIN 1 */
- /* USER CODE END 1 */
- /* MCU Configuration--------------------------------------------------------*/
- /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
- HAL_Init();
- /* USER CODE BEGIN Init */
- /* USER CODE END Init */
- /* Configure the system clock */
- SystemClock_Config();
- /* USER CODE BEGIN SysInit */
- /* USER CODE END SysInit */
- /* Initialize all configured peripherals */
- MX_GPIO_Init();
- MX_DMA_Init();
- MX_ADC1_Init();
- MX_UART4_Init();
- MX_USART1_UART_Init();
- MX_USART2_UART_Init();
- MX_I2C1_Init();
- MX_I2C2_Init();
- MX_TIM1_Init();
- MX_TIM2_Init();
- MX_TIM3_Init();
- MX_TIM4_Init();
- /* USER CODE BEGIN 2 */
- /* 启动定时器2的中断模式 */
-
- dev_load_allinf();
-
- light_set(MODE_BLINK, 250, COLOR_YELLOW, 0);
- light_set(MODE_BLINK, 250, COLOR_YELLOW, 1);
- light_refresh(COLOR_YELLOW, COLOR_YELLOW);
- con_sysinf_debugUart((void *)&huart1);
- Van_Debug_UART_Init((UART_HandleTypeDef *)sysinf.debugUart);
- ADC_Inner_start();
- load_com_pwm_Cfg(&sysinf.devdesc);
- sysinf.scannerUart = &huart4;
- svanner_receive_Rec_Start(sysinf.scannerUart);
- sysinf.ESPUart = &huart2;
- esp_receive_Rec_Start(sysinf.ESPUart);
-
- SensorInitial();
- /* USER CODE END 2 */
- /* Infinite loop */
- /* USER CODE BEGIN WHILE */
-
- Van_Device_Printf(VAN_LOG_ALLPRINT, "\n-----------------------------\n\r");
- Van_Device_Printf(VAN_LOG_ALLPRINT,"* build %s %s *\n",__DATE__,__TIME__);
- Van_Device_Printf(VAN_LOG_ALLPRINT, "ATCG ControlBoard\n\r");
- #ifdef ONE_CHIP_GIT_SHA
- Van_Device_Printf(VAN_LOG_ALLPRINT, "git sha: %s\n\r", ONE_CHIP_GIT_SHA);
- #endif
- Van_Device_Printf(VAN_LOG_ALLPRINT, "desversion 0x%x \n\r",sysinf.devdesc.desversion);
- Van_Device_Printf(VAN_LOG_ALLPRINT, "dev type:%d ver:%d\n\r",sysinf.devdesc.deveice_type,sysinf.devdesc.deveice_ver);
- Van_Device_Printf(VAN_LOG_ALLPRINT, "structure type:%d structure ver:%d\n\r",sysinf.devdesc.structure_type,sysinf.devdesc.structure_ver);
- Van_Device_Printf(VAN_LOG_ALLPRINT, "hard type:%d hard ver :%d \n\r",sysinf.devdesc.hardware_type,sysinf.devdesc.hardware_ver);
- Van_Device_Printf(VAN_LOG_ALLPRINT, "Soft Version: V%d.%d.%d.%d\n\r",SOFT_VERSION_1, SOFT_VERSION_2, SOFT_VERSION_3, SOFT_VERSION_4);
- if(sysinf.resetByIwdg){
- Van_Device_Printf(VAN_LOG_ALLPRINT, "**************************************************************************\n\r");
- Van_Device_Printf(VAN_LOG_ALLPRINT, "* *\n\r");
- Van_Device_Printf(VAN_LOG_ALLPRINT, "* iwdg reset *\n\r");
- Van_Device_Printf(VAN_LOG_ALLPRINT, "* *\n\r");
- Van_Device_Printf(VAN_LOG_ALLPRINT, "**************************************************************************\n\r");
- }
- cfg_param_init();
- Motor_Init();
- updatParm_lysis();
- updatParm_heater_master();
- check_heater_master_needPreheat();
- if (HAL_TIM_Base_Start_IT(&htim2) != HAL_OK) {
- /* 启动失败,可在此处添加错误处理 */
- Error_Handler();
- }
- // if( SensorSelfCheck()){
- // Van_Device_Printf(VAN_LOG_ALLPRINT, "SensorSelfCheck failed\n\r");
- // }else{
- // Van_Device_Printf(VAN_LOG_ALLPRINT, "SensorSelfCheck pass\n\r");
- // }
-
- sysinf.psmMaster.state = SW_Read_To_Board_Selftest;
- while (1)
- {
- /* USER CODE END WHILE */
- /* USER CODE BEGIN 3 */
- svanner_receive_analysis();
- Van_Debug_UART1_test();
- if(((cmd_rx_last + CMD_BUF_SIZE - cmd_rx_header) % CMD_BUF_SIZE) >= 8){
- uint32_t uart0_recOK = DecodeNew(&uart0_massage,uart0_data,g_cmd_rx_buf, &cmd_rx_header,cmd_rx_last,CMD_BUF_SIZE);
- if(uart0_recOK){
- uart0_recOK = 0;
- sysinf.pc_channel_recv = PC_CONNECT_TYPE_UART;
- sysinf.pc_link_timeout = 0;
- uart0_massage.data = (char *)uart0_data;
- deal_mUnion_cmd(&uart0_massage);
- query_pc_cmd(&uart0_massage);
- }
- }
- if(sysinf.deal_espFlag){
- sysinf.deal_espFlag =0;
- WIFI_process();
- }
- if( sysinf.s1_flag == 1){
- sysinf.s1_flag = 0;
- HAL_GPIO_TogglePin((GPIO_TypeDef *)sysinf.run_led_port, sysinf.run_led_pin); /*green*/
- update_work();
- resetSampleData(&sysinf.psmMaster);
- }
- if(sysinf.resendFlag == 1 ){
- sysinf.resendFlag = 0;
- reSend_QR();
- resend_error_update();
- re_send_state();
- }
- if( sysinf.ms10_flag == 1){
- sysinf.ms10_flag = 0;
- if(sysinf.QRBeepTimeer){
- sysinf.QRBeepTimeer --;
- if(sysinf.QRBeepTimeer == 0){
- HAL_GPIO_WritePin((GPIO_TypeDef *)sysinf.beep_port, sysinf.beep_pin,GPIO_PIN_RESET);
- }
- }
- }
- if( sysinf.upheart_flag == 1){
- sysinf.upheart_flag = 0;
- if((sysinf.pc_channel_recv == PC_CONNECT_TYPE_NULL)||(sysinf.pc_channel_recv == PC_CONNECT_TYPE_WIFI && sysinf.pc_link_timeout > (OFFLINE_TIME/3)) ){
- send_Devinf_pc();
- }
- }
- if( sysinf.s10_flag == 1){
- sysinf.s10_flag = 0;
- if(sysinf.pc_link_timeout > OFFLINE_TIME){
- send_Devinf_pc();
- }
- }
- usr_state_machine(&sysinf.psmMaster,&sysinf.heaterMaster);
- }
- /* USER CODE END 3 */
- }
- /**
- * @brief System Clock Configuration
- * @retval None
- */
- void SystemClock_Config(void)
- {
- RCC_OscInitTypeDef RCC_OscInitStruct = {0};
- RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
- RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
- /** Initializes the RCC Oscillators according to the specified parameters
- * in the RCC_OscInitTypeDef structure.
- */
- RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
- RCC_OscInitStruct.HSEState = RCC_HSE_ON;
- RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
- RCC_OscInitStruct.HSIState = RCC_HSI_ON;
- RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
- RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
- RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL2;
- if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
- {
- Error_Handler();
- }
- /** Initializes the CPU, AHB and APB buses clocks
- */
- RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
- |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
- RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
- RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
- RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
- RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
- if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK)
- {
- Error_Handler();
- }
- PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_ADC;
- PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV2;
- if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
- {
- Error_Handler();
- }
- }
- /* USER CODE BEGIN 4 */
- /* USER CODE END 4 */
- /**
- * @brief This function is executed in case of error occurrence.
- * @retval None
- */
- void Error_Handler(void)
- {
- /* USER CODE BEGIN Error_Handler_Debug */
- /* User can add his own implementation to report the HAL error return state */
- __disable_irq();
- while (1)
- {
- }
- /* USER CODE END Error_Handler_Debug */
- }
- #ifdef USE_FULL_ASSERT
- /**
- * @brief Reports the name of the source file and the source line number
- * where the assert_param error has occurred.
- * @param file: pointer to the source file name
- * @param line: assert_param error line source number
- * @retval None
- */
- void assert_failed(uint8_t *file, uint32_t line)
- {
- /* USER CODE BEGIN 6 */
- /* User can add his own implementation to report the file name and line number,
- ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
- /* USER CODE END 6 */
- }
- #endif /* USE_FULL_ASSERT */
|