main.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * @file : main.c
  5. * @brief : Main program body
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * Copyright (c) 2024 STMicroelectronics.
  10. * All rights reserved.
  11. *
  12. * This software is licensed under terms that can be found in the LICENSE file
  13. * in the root directory of this software component.
  14. * If no LICENSE file comes with this software, it is provided AS-IS.
  15. *
  16. ******************************************************************************
  17. */
  18. /* USER CODE END Header */
  19. /* Includes ------------------------------------------------------------------*/
  20. #include "main.h"
  21. #include "cmsis_os.h"
  22. #include "can.h"
  23. #include "dma.h"
  24. #include "iwdg.h"
  25. #include "rtc.h"
  26. #include "usart.h"
  27. #include "gpio.h"
  28. /* Private includes ----------------------------------------------------------*/
  29. /* USER CODE BEGIN Includes */
  30. /* USER CODE END Includes */
  31. /* Private typedef -----------------------------------------------------------*/
  32. /* USER CODE BEGIN PTD */
  33. thermo_struct thermo;
  34. /* USER CODE END PTD */
  35. /* Private define ------------------------------------------------------------*/
  36. /* USER CODE BEGIN PD */
  37. /* USER CODE END PD */
  38. /* Private macro -------------------------------------------------------------*/
  39. /* USER CODE BEGIN PM */
  40. extern uint16_t zero_offset;// 用于存储零点偏移值
  41. /* USER CODE END PM */
  42. /* Private variables ---------------------------------------------------------*/
  43. /* USER CODE BEGIN PV */
  44. /* USER CODE END PV */
  45. /* Private function prototypes -----------------------------------------------*/
  46. void SystemClock_Config(void);
  47. void MX_FREERTOS_Init(void);
  48. /* USER CODE BEGIN PFP */
  49. /* USER CODE END PFP */
  50. /* Private user code ---------------------------------------------------------*/
  51. /* USER CODE BEGIN 0 */
  52. volatile uint8_t triggerAction = 0; // 用于标记是否执行特定操作
  53. /* USER CODE END 0 */
  54. /**
  55. * @brief The application entry point.
  56. * @retval int
  57. */
  58. int main(void)
  59. {
  60. /* USER CODE BEGIN 1 */
  61. /* USER CODE END 1 */
  62. /* MCU Configuration--------------------------------------------------------*/
  63. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  64. HAL_Init();
  65. /* USER CODE BEGIN Init */
  66. /* USER CODE END Init */
  67. /* Configure the system clock */
  68. SystemClock_Config();
  69. /* USER CODE BEGIN SysInit */
  70. /* USER CODE END SysInit */
  71. /* Initialize all configured peripherals */
  72. MX_GPIO_Init();
  73. MX_DMA_Init();
  74. MX_CAN1_Init();
  75. MX_USART2_UART_Init();
  76. // MX_IWDG_Init();
  77. MX_RTC_Init();
  78. /* USER CODE BEGIN 2 */
  79. printf("Honeyeell_Pressure 2025_4_3\r\n");
  80. CAN_FilterInit();
  81. HAL_CAN_Start(&hcan1);// 弿启can
  82. HAL_CAN_ActivateNotification(&hcan1, CAN_IT_RX_FIFO0_MSG_PENDING);// 启用CAN FIFO 0消息挂起中断
  83. Zero_Point_Calibration();
  84. /* USER CODE END 2 */
  85. /* Init scheduler */
  86. osKernelInitialize(); /* Call init function for freertos objects (in freertos.c) */
  87. MX_FREERTOS_Init();
  88. /* Start scheduler */
  89. osKernelStart();
  90. /* We should never get here as control is now taken by the scheduler */
  91. /* Infinite loop */
  92. /* USER CODE BEGIN WHILE */
  93. while (1)
  94. {
  95. /* USER CODE END WHILE */
  96. /* USER CODE BEGIN 3 */
  97. // Read_PressureData();
  98. // HAL_Delay(500);
  99. // HAL_GPIO_TogglePin(GPIOB,GPIO_PIN_4);
  100. }
  101. /* USER CODE END 3 */
  102. }
  103. /**
  104. * @brief System Clock Configuration
  105. * @retval None
  106. */
  107. void SystemClock_Config(void)
  108. {
  109. RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  110. RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  111. /** Configure the main internal regulator output voltage
  112. */
  113. if (HAL_PWREx_ControlVoltageScaling(PWR_REGULATOR_VOLTAGE_SCALE1) != HAL_OK)
  114. {
  115. Error_Handler();
  116. }
  117. /** Configure LSE Drive Capability
  118. */
  119. HAL_PWR_EnableBkUpAccess();
  120. __HAL_RCC_LSEDRIVE_CONFIG(RCC_LSEDRIVE_LOW);
  121. /** Initializes the RCC Oscillators according to the specified parameters
  122. * in the RCC_OscInitTypeDef structure.
  123. */
  124. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI|RCC_OSCILLATORTYPE_LSI
  125. |RCC_OSCILLATORTYPE_LSE;
  126. RCC_OscInitStruct.LSEState = RCC_LSE_ON;
  127. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  128. RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
  129. RCC_OscInitStruct.LSIState = RCC_LSI_ON;
  130. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  131. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
  132. RCC_OscInitStruct.PLL.PLLM = 1;
  133. RCC_OscInitStruct.PLL.PLLN = 8;
  134. RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV7;
  135. RCC_OscInitStruct.PLL.PLLQ = RCC_PLLQ_DIV2;
  136. RCC_OscInitStruct.PLL.PLLR = RCC_PLLR_DIV2;
  137. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  138. {
  139. Error_Handler();
  140. }
  141. /** Initializes the CPU, AHB and APB buses clocks
  142. */
  143. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  144. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  145. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  146. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV4;
  147. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
  148. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  149. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK)
  150. {
  151. Error_Handler();
  152. }
  153. }
  154. /* USER CODE BEGIN 4 */
  155. //void CAN_Send_Msg(uint8_t *msg,uint8_t len,uint32_t id)
  156. //{
  157. // CAN_TxHeaderTypeDef Tx_Header;
  158. // uint32_t TxMailBox;
  159. // Tx_Header.StdId = id;
  160. // Tx_Header.ExtId = id;
  161. // Tx_Header.IDE = CAN_ID_EXT;
  162. // Tx_Header.RTR = CAN_RTR_DATA;
  163. // Tx_Header.DLC = len;
  164. // HAL_CAN_AddTxMessage(&hcan1,&Tx_Header,msg,&TxMailBox);
  165. //}
  166. /* USER CODE END 4 */
  167. /**
  168. * @brief Period elapsed callback in non blocking mode
  169. * @note This function is called when TIM6 interrupt took place, inside
  170. * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
  171. * a global variable "uwTick" used as application time base.
  172. * @param htim : TIM handle
  173. * @retval None
  174. */
  175. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  176. {
  177. /* USER CODE BEGIN Callback 0 */
  178. /* USER CODE END Callback 0 */
  179. if (htim->Instance == TIM6) {
  180. HAL_IncTick();
  181. }
  182. /* USER CODE BEGIN Callback 1 */
  183. /* USER CODE END Callback 1 */
  184. }
  185. /**
  186. * @brief This function is executed in case of error occurrence.
  187. * @retval None
  188. */
  189. void Error_Handler(void)
  190. {
  191. /* USER CODE BEGIN Error_Handler_Debug */
  192. /* User can add his own implementation to report the HAL error return state */
  193. __disable_irq();
  194. while (1)
  195. {
  196. }
  197. /* USER CODE END Error_Handler_Debug */
  198. }
  199. #ifdef USE_FULL_ASSERT
  200. /**
  201. * @brief Reports the name of the source file and the source line number
  202. * where the assert_param error has occurred.
  203. * @param file: pointer to the source file name
  204. * @param line: assert_param error line source number
  205. * @retval None
  206. */
  207. void assert_failed(uint8_t *file, uint32_t line)
  208. {
  209. /* USER CODE BEGIN 6 */
  210. /* User can add his own implementation to report the file name and line number,
  211. ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  212. /* USER CODE END 6 */
  213. }
  214. #endif /* USE_FULL_ASSERT */