| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /**
- ******************************************************************************
- * @file stm32f4xx_hal_fmpi2c_ex.h
- * @author MCD Application Team
- * @brief Header file of FMPI2C HAL Extended module.
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2016 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 to prevent recursive inclusion -------------------------------------*/
- #ifndef STM32F4xx_HAL_FMPI2C_EX_H
- #define STM32F4xx_HAL_FMPI2C_EX_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #if defined(FMPI2C_CR1_PE)
- /* Includes ------------------------------------------------------------------*/
- #include "stm32f4xx_hal_def.h"
- /** @addtogroup STM32F4xx_HAL_Driver
- * @{
- */
- /** @addtogroup FMPI2CEx
- * @{
- */
- /* Exported types ------------------------------------------------------------*/
- /* Exported constants --------------------------------------------------------*/
- /** @defgroup FMPI2CEx_Exported_Constants FMPI2C Extended Exported Constants
- * @{
- */
- /** @defgroup FMPI2CEx_Analog_Filter FMPI2C Extended Analog Filter
- * @{
- */
- #define FMPI2C_ANALOGFILTER_ENABLE 0x00000000U
- #define FMPI2C_ANALOGFILTER_DISABLE FMPI2C_CR1_ANFOFF
- /**
- * @}
- */
- /** @defgroup FMPI2CEx_FastModePlus FMPI2C Extended Fast Mode Plus
- * @{
- */
- #define FMPI2C_FASTMODEPLUS_SCL SYSCFG_CFGR_FMPI2C1_SCL /*!< Enable Fast Mode Plus on FMPI2C1 SCL pins */
- #define FMPI2C_FASTMODEPLUS_SDA SYSCFG_CFGR_FMPI2C1_SDA /*!< Enable Fast Mode Plus on FMPI2C1 SDA pins */
- /**
- * @}
- */
- /**
- * @}
- */
- /* Exported macro ------------------------------------------------------------*/
- /** @defgroup FMPI2CEx_Exported_Macros FMPI2C Extended Exported Macros
- * @{
- */
- /**
- * @}
- */
- /* Exported functions --------------------------------------------------------*/
- /** @addtogroup FMPI2CEx_Exported_Functions FMPI2C Extended Exported Functions
- * @{
- */
- /** @addtogroup FMPI2CEx_Exported_Functions_Group1 Filter Mode Functions
- * @{
- */
- /* Peripheral Control functions ************************************************/
- HAL_StatusTypeDef HAL_FMPI2CEx_ConfigAnalogFilter(FMPI2C_HandleTypeDef *hfmpi2c, uint32_t AnalogFilter);
- HAL_StatusTypeDef HAL_FMPI2CEx_ConfigDigitalFilter(FMPI2C_HandleTypeDef *hfmpi2c, uint32_t DigitalFilter);
- /**
- * @}
- */
- /** @addtogroup FMPI2CEx_Exported_Functions_Group3 Fast Mode Plus Functions
- * @{
- */
- void HAL_FMPI2CEx_EnableFastModePlus(uint32_t ConfigFastModePlus);
- void HAL_FMPI2CEx_DisableFastModePlus(uint32_t ConfigFastModePlus);
- /**
- * @}
- */
- /**
- * @}
- */
- /* Private constants ---------------------------------------------------------*/
- /** @defgroup FMPI2CEx_Private_Constants FMPI2C Extended Private Constants
- * @{
- */
- /**
- * @}
- */
- /* Private macros ------------------------------------------------------------*/
- /** @defgroup FMPI2CEx_Private_Macro FMPI2C Extended Private Macros
- * @{
- */
- #define IS_FMPI2C_ANALOG_FILTER(FILTER) (((FILTER) == FMPI2C_ANALOGFILTER_ENABLE) || \
- ((FILTER) == FMPI2C_ANALOGFILTER_DISABLE))
- #define IS_FMPI2C_DIGITAL_FILTER(FILTER) ((FILTER) <= 0x0000000FU)
- #define IS_FMPI2C_FASTMODEPLUS(__CONFIG__) ((((__CONFIG__) & (FMPI2C_FASTMODEPLUS_SCL)) == FMPI2C_FASTMODEPLUS_SCL) || \
- (((__CONFIG__) & (FMPI2C_FASTMODEPLUS_SDA)) == FMPI2C_FASTMODEPLUS_SDA))
- /**
- * @}
- */
- /* Private Functions ---------------------------------------------------------*/
- /** @defgroup FMPI2CEx_Private_Functions FMPI2C Extended Private Functions
- * @{
- */
- /* Private functions are defined in stm32f4xx_hal_fmpi2c_ex.c file */
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- #endif /* FMPI2C_CR1_PE */
- #ifdef __cplusplus
- }
- #endif
- #endif /* STM32F4xx_HAL_FMPI2C_EX_H */
|