/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file : main.h * @brief : Header for main.c file. * This file contains the common defines of the application. ****************************************************************************** * @attention * * Copyright (c) 2022 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. * ****************************************************************************** */ /* USER CODE END Header */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __MAIN_H #define __MAIN_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32wbaxx_hal.h" #include "app_conf.h" #include "app_common.h" #include "stm32wbaxx_ll_icache.h" #include "stm32wbaxx_ll_tim.h" #include "stm32wbaxx_ll_bus.h" #include "stm32wbaxx_ll_cortex.h" #include "stm32wbaxx_ll_rcc.h" #include "stm32wbaxx_ll_system.h" #include "stm32wbaxx_ll_utils.h" #include "stm32wbaxx_ll_pwr.h" #include "stm32wbaxx_ll_gpio.h" #include "stm32wbaxx_ll_dma.h" #include "stm32wbaxx_ll_exti.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ /* USER CODE END Includes */ /* Exported types ------------------------------------------------------------*/ /* USER CODE BEGIN ET */ /* USER CODE END ET */ /* Exported constants --------------------------------------------------------*/ /* USER CODE BEGIN EC */ /* USER CODE END EC */ /* Exported macro ------------------------------------------------------------*/ /* USER CODE BEGIN EM */ /* USER CODE END EM */ /* Exported functions prototypes ---------------------------------------------*/ void Error_Handler(void); void MX_GPIO_Init(void); void MX_GPDMA1_Init(void); void MX_RAMCFG_Init(void); void MX_RTC_Init(void); void MX_USART1_UART_Init(void); void MX_ADC4_Init(void); void MX_RNG_Init(void); void MX_CRC_Init(void); void MX_ICACHE_Init(void); /* USER CODE BEGIN EFP */ /* USER CODE END EFP */ /* Private defines -----------------------------------------------------------*/ /* USER CODE BEGIN Private defines */ /* USER CODE END Private defines */ #ifdef __cplusplus } #endif #endif /* __MAIN_H */