mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Committer:
mbed_official
Date:
Mon Sep 28 20:15:09 2015 +0100
Revision:
634:ac7d6880524d
Parent:
632:7687fb9c4f91
Synchronized with git revision 9b7d23d47153c298a6d24de9a415202705889d11

Full URL: https://github.com/mbedmicro/mbed/commit/9b7d23d47153c298a6d24de9a415202705889d11/

Revert "[NUCLEO_F303K8] add support of the STM32F303K8"

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 237:f3da66175598 1 /**
mbed_official 237:f3da66175598 2 ******************************************************************************
mbed_official 237:f3da66175598 3 * @file stm32f3xx_hal_smbus.h
mbed_official 237:f3da66175598 4 * @author MCD Application Team
mbed_official 634:ac7d6880524d 5 * @version V1.1.0
mbed_official 634:ac7d6880524d 6 * @date 12-Sept-2014
mbed_official 237:f3da66175598 7 * @brief Header file of SMBUS HAL module.
mbed_official 237:f3da66175598 8 ******************************************************************************
mbed_official 237:f3da66175598 9 * @attention
mbed_official 237:f3da66175598 10 *
mbed_official 634:ac7d6880524d 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
mbed_official 237:f3da66175598 12 *
mbed_official 237:f3da66175598 13 * Redistribution and use in source and binary forms, with or without modification,
mbed_official 237:f3da66175598 14 * are permitted provided that the following conditions are met:
mbed_official 237:f3da66175598 15 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 237:f3da66175598 16 * this list of conditions and the following disclaimer.
mbed_official 237:f3da66175598 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 237:f3da66175598 18 * this list of conditions and the following disclaimer in the documentation
mbed_official 237:f3da66175598 19 * and/or other materials provided with the distribution.
mbed_official 237:f3da66175598 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 237:f3da66175598 21 * may be used to endorse or promote products derived from this software
mbed_official 237:f3da66175598 22 * without specific prior written permission.
mbed_official 237:f3da66175598 23 *
mbed_official 237:f3da66175598 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 237:f3da66175598 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 237:f3da66175598 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 237:f3da66175598 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 237:f3da66175598 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 237:f3da66175598 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 237:f3da66175598 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 237:f3da66175598 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 237:f3da66175598 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 237:f3da66175598 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 237:f3da66175598 34 *
mbed_official 237:f3da66175598 35 ******************************************************************************
mbed_official 237:f3da66175598 36 */
mbed_official 237:f3da66175598 37
mbed_official 237:f3da66175598 38 /* Define to prevent recursive inclusion -------------------------------------*/
mbed_official 237:f3da66175598 39 #ifndef __STM32F3xx_HAL_SMBUS_H
mbed_official 237:f3da66175598 40 #define __STM32F3xx_HAL_SMBUS_H
mbed_official 237:f3da66175598 41
mbed_official 237:f3da66175598 42 #ifdef __cplusplus
mbed_official 237:f3da66175598 43 extern "C" {
mbed_official 237:f3da66175598 44 #endif
mbed_official 237:f3da66175598 45
mbed_official 237:f3da66175598 46 /* Includes ------------------------------------------------------------------*/
mbed_official 237:f3da66175598 47 #include "stm32f3xx_hal_def.h"
mbed_official 237:f3da66175598 48
mbed_official 237:f3da66175598 49 /** @addtogroup STM32F3xx_HAL_Driver
mbed_official 237:f3da66175598 50 * @{
mbed_official 237:f3da66175598 51 */
mbed_official 237:f3da66175598 52
mbed_official 237:f3da66175598 53 /** @addtogroup SMBUS
mbed_official 237:f3da66175598 54 * @{
mbed_official 237:f3da66175598 55 */
mbed_official 237:f3da66175598 56
mbed_official 237:f3da66175598 57 /* Exported types ------------------------------------------------------------*/
mbed_official 375:3d36234a1087 58 /** @defgroup SMBUS_Exported_Types SMBUS Exported Types
mbed_official 375:3d36234a1087 59 * @{
mbed_official 375:3d36234a1087 60 */
mbed_official 237:f3da66175598 61
mbed_official 237:f3da66175598 62 /**
mbed_official 237:f3da66175598 63 * @brief SMBUS Configuration Structure definition
mbed_official 237:f3da66175598 64 */
mbed_official 237:f3da66175598 65 typedef struct
mbed_official 237:f3da66175598 66 {
mbed_official 237:f3da66175598 67 uint32_t Timing; /*!< Specifies the SMBUS_TIMINGR_register value.
mbed_official 237:f3da66175598 68 This parameter calculated by referring to SMBUS initialization
mbed_official 237:f3da66175598 69 section in Reference manual */
mbed_official 237:f3da66175598 70 uint32_t AnalogFilter; /*!< Specifies if Analog Filter is enable or not.
mbed_official 237:f3da66175598 71 This parameter can be a a value of @ref SMBUS_Analog_Filter */
mbed_official 237:f3da66175598 72
mbed_official 237:f3da66175598 73 uint32_t OwnAddress1; /*!< Specifies the first device own address.
mbed_official 237:f3da66175598 74 This parameter can be a 7-bit or 10-bit address. */
mbed_official 237:f3da66175598 75
mbed_official 237:f3da66175598 76 uint32_t AddressingMode; /*!< Specifies if 7-bit or 10-bit addressing mode for master is selected.
mbed_official 237:f3da66175598 77 This parameter can be a value of @ref SMBUS_addressing_mode */
mbed_official 237:f3da66175598 78
mbed_official 237:f3da66175598 79 uint32_t DualAddressMode; /*!< Specifies if dual addressing mode is selected.
mbed_official 237:f3da66175598 80 This parameter can be a value of @ref SMBUS_dual_addressing_mode */
mbed_official 237:f3da66175598 81
mbed_official 237:f3da66175598 82 uint32_t OwnAddress2; /*!< Specifies the second device own address if dual addressing mode is selected
mbed_official 237:f3da66175598 83 This parameter can be a 7-bit address. */
mbed_official 237:f3da66175598 84
mbed_official 237:f3da66175598 85 uint32_t OwnAddress2Masks; /*!< Specifies the acknoledge mask address second device own address if dual addressing mode is selected
mbed_official 237:f3da66175598 86 This parameter can be a value of @ref SMBUS_own_address2_masks. */
mbed_official 237:f3da66175598 87
mbed_official 237:f3da66175598 88 uint32_t GeneralCallMode; /*!< Specifies if general call mode is selected.
mbed_official 237:f3da66175598 89 This parameter can be a value of @ref SMBUS_general_call_addressing_mode. */
mbed_official 237:f3da66175598 90
mbed_official 237:f3da66175598 91 uint32_t NoStretchMode; /*!< Specifies if nostretch mode is selected.
mbed_official 237:f3da66175598 92 This parameter can be a value of @ref SMBUS_nostretch_mode */
mbed_official 237:f3da66175598 93
mbed_official 237:f3da66175598 94 uint32_t PacketErrorCheckMode; /*!< Specifies if Packet Error Check mode is selected.
mbed_official 237:f3da66175598 95 This parameter can be a value of @ref SMBUS_packet_error_check_mode */
mbed_official 237:f3da66175598 96
mbed_official 237:f3da66175598 97 uint32_t PeripheralMode; /*!< Specifies which mode of Periphal is selected.
mbed_official 237:f3da66175598 98 This parameter can be a value of @ref SMBUS_peripheral_mode */
mbed_official 237:f3da66175598 99
mbed_official 237:f3da66175598 100 uint32_t SMBusTimeout; /*!< Specifies the content of the 32 Bits SMBUS_TIMEOUT_register value.
mbed_official 237:f3da66175598 101 (Enable bits and different timeout values)
mbed_official 237:f3da66175598 102 This parameter calculated by referring to SMBUS initialization
mbed_official 237:f3da66175598 103 section in Reference manual */
mbed_official 237:f3da66175598 104 } SMBUS_InitTypeDef;
mbed_official 237:f3da66175598 105
mbed_official 237:f3da66175598 106 /**
mbed_official 237:f3da66175598 107 * @brief HAL State structures definition
mbed_official 237:f3da66175598 108 */
mbed_official 237:f3da66175598 109 typedef enum
mbed_official 237:f3da66175598 110 {
mbed_official 237:f3da66175598 111 HAL_SMBUS_STATE_RESET = 0x00, /*!< SMBUS not yet initialized or disabled */
mbed_official 237:f3da66175598 112 HAL_SMBUS_STATE_READY = 0x01, /*!< SMBUS initialized and ready for use */
mbed_official 237:f3da66175598 113 HAL_SMBUS_STATE_BUSY = 0x02, /*!< SMBUS internal process is ongoing */
mbed_official 237:f3da66175598 114 HAL_SMBUS_STATE_MASTER_BUSY_TX = 0x12, /*!< Master Data Transmission process is ongoing */
mbed_official 237:f3da66175598 115 HAL_SMBUS_STATE_MASTER_BUSY_RX = 0x22, /*!< Master Data Reception process is ongoing */
mbed_official 237:f3da66175598 116 HAL_SMBUS_STATE_SLAVE_BUSY_TX = 0x32, /*!< Slave Data Transmission process is ongoing */
mbed_official 237:f3da66175598 117 HAL_SMBUS_STATE_SLAVE_BUSY_RX = 0x42, /*!< Slave Data Reception process is ongoing */
mbed_official 237:f3da66175598 118 HAL_SMBUS_STATE_TIMEOUT = 0x03, /*!< Timeout state */
mbed_official 237:f3da66175598 119 HAL_SMBUS_STATE_ERROR = 0x04, /*!< Reception process is ongoing */
mbed_official 237:f3da66175598 120 HAL_SMBUS_STATE_SLAVE_LISTEN = 0x08, /*!< Address Listen Mode is ongoing */
mbed_official 237:f3da66175598 121 /* Aliases for inter STM32 series compatibility */
mbed_official 237:f3da66175598 122 HAL_SMBUS_STATE_LISTEN = HAL_SMBUS_STATE_SLAVE_LISTEN
mbed_official 237:f3da66175598 123 }HAL_SMBUS_StateTypeDef;
mbed_official 237:f3da66175598 124
mbed_official 237:f3da66175598 125 /**
mbed_official 237:f3da66175598 126 * @brief HAL SMBUS Error Code structure definition
mbed_official 237:f3da66175598 127 */
mbed_official 237:f3da66175598 128 typedef enum
mbed_official 237:f3da66175598 129 {
mbed_official 237:f3da66175598 130 HAL_SMBUS_ERROR_NONE = 0x00, /*!< No error */
mbed_official 237:f3da66175598 131 HAL_SMBUS_ERROR_BERR = 0x01, /*!< BERR error */
mbed_official 237:f3da66175598 132 HAL_SMBUS_ERROR_ARLO = 0x02, /*!< ARLO error */
mbed_official 237:f3da66175598 133 HAL_SMBUS_ERROR_ACKF = 0x04, /*!< ACKF error */
mbed_official 237:f3da66175598 134 HAL_SMBUS_ERROR_OVR = 0x08, /*!< OVR error */
mbed_official 237:f3da66175598 135 HAL_SMBUS_ERROR_HALTIMEOUT = 0x10, /*!< Timeout error */
mbed_official 237:f3da66175598 136 HAL_SMBUS_ERROR_BUSTIMEOUT = 0x20, /*!< Bus Timeout error */
mbed_official 237:f3da66175598 137 HAL_SMBUS_ERROR_ALERT = 0x40, /*!< Alert error */
mbed_official 237:f3da66175598 138 HAL_SMBUS_ERROR_PECERR = 0x80 /*!< PEC error */
mbed_official 237:f3da66175598 139
mbed_official 237:f3da66175598 140 }HAL_SMBUS_ErrorTypeDef;
mbed_official 237:f3da66175598 141
mbed_official 237:f3da66175598 142 /**
mbed_official 237:f3da66175598 143 * @brief SMBUS handle Structure definition
mbed_official 237:f3da66175598 144 */
mbed_official 237:f3da66175598 145 typedef struct
mbed_official 237:f3da66175598 146 {
mbed_official 237:f3da66175598 147 I2C_TypeDef *Instance; /*!< SMBUS registers base address */
mbed_official 237:f3da66175598 148
mbed_official 237:f3da66175598 149 SMBUS_InitTypeDef Init; /*!< SMBUS communication parameters */
mbed_official 237:f3da66175598 150
mbed_official 237:f3da66175598 151 uint8_t *pBuffPtr; /*!< Pointer to SMBUS transfer buffer */
mbed_official 237:f3da66175598 152
mbed_official 237:f3da66175598 153 uint16_t XferSize; /*!< SMBUS transfer size */
mbed_official 237:f3da66175598 154
mbed_official 237:f3da66175598 155 __IO uint16_t XferCount; /*!< SMBUS transfer counter */
mbed_official 237:f3da66175598 156
mbed_official 237:f3da66175598 157 __IO uint32_t XferOptions; /*!< SMBUS transfer options */
mbed_official 237:f3da66175598 158
mbed_official 237:f3da66175598 159 __IO HAL_SMBUS_StateTypeDef PreviousState; /*!< SMBUS communication Previous tate */
mbed_official 237:f3da66175598 160
mbed_official 237:f3da66175598 161 HAL_LockTypeDef Lock; /*!< SMBUS locking object */
mbed_official 237:f3da66175598 162
mbed_official 237:f3da66175598 163 __IO HAL_SMBUS_StateTypeDef State; /*!< SMBUS communication state */
mbed_official 237:f3da66175598 164
mbed_official 237:f3da66175598 165 __IO HAL_SMBUS_ErrorTypeDef ErrorCode; /*!< SMBUS Error code */
mbed_official 237:f3da66175598 166
mbed_official 237:f3da66175598 167 }SMBUS_HandleTypeDef;
mbed_official 375:3d36234a1087 168 /**
mbed_official 375:3d36234a1087 169 * @}
mbed_official 375:3d36234a1087 170 */
mbed_official 237:f3da66175598 171
mbed_official 237:f3da66175598 172 /* Exported constants --------------------------------------------------------*/
mbed_official 237:f3da66175598 173
mbed_official 375:3d36234a1087 174 /** @defgroup SMBUS_Exported_Constants SMBUS Exported Constants
mbed_official 237:f3da66175598 175 * @{
mbed_official 237:f3da66175598 176 */
mbed_official 237:f3da66175598 177
mbed_official 375:3d36234a1087 178 /** @defgroup SMBUS_Analog_Filter SMBUS Analog Filter
mbed_official 237:f3da66175598 179 * @{
mbed_official 237:f3da66175598 180 */
mbed_official 237:f3da66175598 181 #define SMBUS_ANALOGFILTER_ENABLED ((uint32_t)0x00000000)
mbed_official 237:f3da66175598 182 #define SMBUS_ANALOGFILTER_DISABLED I2C_CR1_ANFOFF
mbed_official 237:f3da66175598 183
mbed_official 237:f3da66175598 184 #define IS_SMBUS_ANALOG_FILTER(FILTER) (((FILTER) == SMBUS_ANALOGFILTER_ENABLED) || \
mbed_official 237:f3da66175598 185 ((FILTER) == SMBUS_ANALOGFILTER_DISABLED))
mbed_official 237:f3da66175598 186 /**
mbed_official 237:f3da66175598 187 * @}
mbed_official 237:f3da66175598 188 */
mbed_official 237:f3da66175598 189
mbed_official 375:3d36234a1087 190 /** @defgroup SMBUS_addressing_mode SMBUS addressing mode
mbed_official 237:f3da66175598 191 * @{
mbed_official 237:f3da66175598 192 */
mbed_official 237:f3da66175598 193 #define SMBUS_ADDRESSINGMODE_7BIT ((uint32_t)0x00000001)
mbed_official 237:f3da66175598 194 #define SMBUS_ADDRESSINGMODE_10BIT ((uint32_t)0x00000002)
mbed_official 237:f3da66175598 195
mbed_official 237:f3da66175598 196 #define IS_SMBUS_ADDRESSING_MODE(MODE) (((MODE) == SMBUS_ADDRESSINGMODE_7BIT) || \
mbed_official 237:f3da66175598 197 ((MODE) == SMBUS_ADDRESSINGMODE_10BIT))
mbed_official 237:f3da66175598 198 /**
mbed_official 237:f3da66175598 199 * @}
mbed_official 237:f3da66175598 200 */
mbed_official 237:f3da66175598 201
mbed_official 375:3d36234a1087 202 /** @defgroup SMBUS_dual_addressing_mode SMBUS dual addressing mode
mbed_official 237:f3da66175598 203 * @{
mbed_official 237:f3da66175598 204 */
mbed_official 237:f3da66175598 205
mbed_official 237:f3da66175598 206 #define SMBUS_DUALADDRESS_DISABLED ((uint32_t)0x00000000)
mbed_official 237:f3da66175598 207 #define SMBUS_DUALADDRESS_ENABLED I2C_OAR2_OA2EN
mbed_official 237:f3da66175598 208
mbed_official 237:f3da66175598 209 #define IS_SMBUS_DUAL_ADDRESS(ADDRESS) (((ADDRESS) == SMBUS_DUALADDRESS_DISABLED) || \
mbed_official 237:f3da66175598 210 ((ADDRESS) == SMBUS_DUALADDRESS_ENABLED))
mbed_official 237:f3da66175598 211 /**
mbed_official 237:f3da66175598 212 * @}
mbed_official 237:f3da66175598 213 */
mbed_official 237:f3da66175598 214
mbed_official 375:3d36234a1087 215 /** @defgroup SMBUS_own_address2_masks SMBUS own address2 masks
mbed_official 237:f3da66175598 216 * @{
mbed_official 237:f3da66175598 217 */
mbed_official 237:f3da66175598 218
mbed_official 237:f3da66175598 219 #define SMBUS_OA2_NOMASK ((uint8_t)0x00)
mbed_official 237:f3da66175598 220 #define SMBUS_OA2_MASK01 ((uint8_t)0x01)
mbed_official 237:f3da66175598 221 #define SMBUS_OA2_MASK02 ((uint8_t)0x02)
mbed_official 237:f3da66175598 222 #define SMBUS_OA2_MASK03 ((uint8_t)0x03)
mbed_official 237:f3da66175598 223 #define SMBUS_OA2_MASK04 ((uint8_t)0x04)
mbed_official 237:f3da66175598 224 #define SMBUS_OA2_MASK05 ((uint8_t)0x05)
mbed_official 237:f3da66175598 225 #define SMBUS_OA2_MASK06 ((uint8_t)0x06)
mbed_official 237:f3da66175598 226 #define SMBUS_OA2_MASK07 ((uint8_t)0x07)
mbed_official 237:f3da66175598 227
mbed_official 237:f3da66175598 228 #define IS_SMBUS_OWN_ADDRESS2_MASK(MASK) (((MASK) == SMBUS_OA2_NOMASK) || \
mbed_official 237:f3da66175598 229 ((MASK) == SMBUS_OA2_MASK01) || \
mbed_official 237:f3da66175598 230 ((MASK) == SMBUS_OA2_MASK02) || \
mbed_official 237:f3da66175598 231 ((MASK) == SMBUS_OA2_MASK03) || \
mbed_official 237:f3da66175598 232 ((MASK) == SMBUS_OA2_MASK04) || \
mbed_official 237:f3da66175598 233 ((MASK) == SMBUS_OA2_MASK05) || \
mbed_official 237:f3da66175598 234 ((MASK) == SMBUS_OA2_MASK06) || \
mbed_official 237:f3da66175598 235 ((MASK) == SMBUS_OA2_MASK07))
mbed_official 237:f3da66175598 236 /**
mbed_official 237:f3da66175598 237 * @}
mbed_official 237:f3da66175598 238 */
mbed_official 237:f3da66175598 239
mbed_official 237:f3da66175598 240
mbed_official 375:3d36234a1087 241 /** @defgroup SMBUS_general_call_addressing_mode SMBUS general call addressing mode
mbed_official 237:f3da66175598 242 * @{
mbed_official 237:f3da66175598 243 */
mbed_official 237:f3da66175598 244 #define SMBUS_GENERALCALL_DISABLED ((uint32_t)0x00000000)
mbed_official 237:f3da66175598 245 #define SMBUS_GENERALCALL_ENABLED I2C_CR1_GCEN
mbed_official 237:f3da66175598 246
mbed_official 237:f3da66175598 247 #define IS_SMBUS_GENERAL_CALL(CALL) (((CALL) == SMBUS_GENERALCALL_DISABLED) || \
mbed_official 237:f3da66175598 248 ((CALL) == SMBUS_GENERALCALL_ENABLED))
mbed_official 237:f3da66175598 249 /**
mbed_official 237:f3da66175598 250 * @}
mbed_official 237:f3da66175598 251 */
mbed_official 237:f3da66175598 252
mbed_official 375:3d36234a1087 253 /** @defgroup SMBUS_nostretch_mode SMBUS nostretch mode
mbed_official 237:f3da66175598 254 * @{
mbed_official 237:f3da66175598 255 */
mbed_official 237:f3da66175598 256 #define SMBUS_NOSTRETCH_DISABLED ((uint32_t)0x00000000)
mbed_official 237:f3da66175598 257 #define SMBUS_NOSTRETCH_ENABLED I2C_CR1_NOSTRETCH
mbed_official 237:f3da66175598 258
mbed_official 237:f3da66175598 259 #define IS_SMBUS_NO_STRETCH(STRETCH) (((STRETCH) == SMBUS_NOSTRETCH_DISABLED) || \
mbed_official 237:f3da66175598 260 ((STRETCH) == SMBUS_NOSTRETCH_ENABLED))
mbed_official 237:f3da66175598 261 /**
mbed_official 237:f3da66175598 262 * @}
mbed_official 237:f3da66175598 263 */
mbed_official 237:f3da66175598 264
mbed_official 375:3d36234a1087 265 /** @defgroup SMBUS_packet_error_check_mode SMBUS packet error check mode
mbed_official 237:f3da66175598 266 * @{
mbed_official 237:f3da66175598 267 */
mbed_official 237:f3da66175598 268 #define SMBUS_PEC_DISABLED ((uint32_t)0x00000000)
mbed_official 237:f3da66175598 269 #define SMBUS_PEC_ENABLED I2C_CR1_PECEN
mbed_official 237:f3da66175598 270
mbed_official 237:f3da66175598 271 #define IS_SMBUS_PEC(PEC) (((PEC) == SMBUS_PEC_DISABLED) || \
mbed_official 237:f3da66175598 272 ((PEC) == SMBUS_PEC_ENABLED))
mbed_official 237:f3da66175598 273 /**
mbed_official 237:f3da66175598 274 * @}
mbed_official 237:f3da66175598 275 */
mbed_official 237:f3da66175598 276
mbed_official 375:3d36234a1087 277 /** @defgroup SMBUS_peripheral_mode SMBUS peripheral mode
mbed_official 237:f3da66175598 278 * @{
mbed_official 237:f3da66175598 279 */
mbed_official 237:f3da66175598 280 #define SMBUS_PERIPHERAL_MODE_SMBUS_HOST (uint32_t)(I2C_CR1_SMBHEN)
mbed_official 237:f3da66175598 281 #define SMBUS_PERIPHERAL_MODE_SMBUS_SLAVE (uint32_t)(0x00000000)
mbed_official 237:f3da66175598 282 #define SMBUS_PERIPHERAL_MODE_SMBUS_SLAVE_ARP (uint32_t)(I2C_CR1_SMBDEN)
mbed_official 237:f3da66175598 283
mbed_official 237:f3da66175598 284 #define IS_SMBUS_PERIPHERAL_MODE(MODE) (((MODE) == SMBUS_PERIPHERAL_MODE_SMBUS_HOST) || \
mbed_official 237:f3da66175598 285 ((MODE) == SMBUS_PERIPHERAL_MODE_SMBUS_SLAVE) || \
mbed_official 237:f3da66175598 286 ((MODE) == SMBUS_PERIPHERAL_MODE_SMBUS_SLAVE_ARP))
mbed_official 237:f3da66175598 287 /**
mbed_official 237:f3da66175598 288 * @}
mbed_official 237:f3da66175598 289 */
mbed_official 237:f3da66175598 290
mbed_official 375:3d36234a1087 291 /** @defgroup SMBUS_ReloadEndMode_definition SMBUS ReloadEndMode definition
mbed_official 237:f3da66175598 292 * @{
mbed_official 237:f3da66175598 293 */
mbed_official 237:f3da66175598 294
mbed_official 237:f3da66175598 295 #define SMBUS_SOFTEND_MODE ((uint32_t)0x00000000)
mbed_official 237:f3da66175598 296 #define SMBUS_RELOAD_MODE I2C_CR2_RELOAD
mbed_official 237:f3da66175598 297 #define SMBUS_AUTOEND_MODE I2C_CR2_AUTOEND
mbed_official 237:f3da66175598 298 #define SMBUS_SENDPEC_MODE I2C_CR2_PECBYTE
mbed_official 237:f3da66175598 299
mbed_official 237:f3da66175598 300 #define IS_SMBUS_TRANSFER_MODE(MODE) (((MODE) == SMBUS_RELOAD_MODE) || \
mbed_official 237:f3da66175598 301 ((MODE) == SMBUS_AUTOEND_MODE) || \
mbed_official 237:f3da66175598 302 ((MODE) == SMBUS_SOFTEND_MODE) || \
mbed_official 237:f3da66175598 303 ((MODE) == (SMBUS_RELOAD_MODE | SMBUS_SENDPEC_MODE)) || \
mbed_official 237:f3da66175598 304 ((MODE) == (SMBUS_AUTOEND_MODE | SMBUS_SENDPEC_MODE)) || \
mbed_official 237:f3da66175598 305 ((MODE) == (SMBUS_AUTOEND_MODE | SMBUS_RELOAD_MODE)) || \
mbed_official 237:f3da66175598 306 ((MODE) == (SMBUS_AUTOEND_MODE | SMBUS_SENDPEC_MODE | SMBUS_RELOAD_MODE )))
mbed_official 237:f3da66175598 307
mbed_official 237:f3da66175598 308 /**
mbed_official 237:f3da66175598 309 * @}
mbed_official 237:f3da66175598 310 */
mbed_official 237:f3da66175598 311
mbed_official 375:3d36234a1087 312 /** @defgroup SMBUS_StartStopMode_definition SMBUS StartStopMode definition
mbed_official 237:f3da66175598 313 * @{
mbed_official 237:f3da66175598 314 */
mbed_official 237:f3da66175598 315
mbed_official 237:f3da66175598 316 #define SMBUS_NO_STARTSTOP ((uint32_t)0x00000000)
mbed_official 237:f3da66175598 317 #define SMBUS_GENERATE_STOP I2C_CR2_STOP
mbed_official 237:f3da66175598 318 #define SMBUS_GENERATE_START_READ (uint32_t)(I2C_CR2_START | I2C_CR2_RD_WRN)
mbed_official 237:f3da66175598 319 #define SMBUS_GENERATE_START_WRITE I2C_CR2_START
mbed_official 237:f3da66175598 320
mbed_official 237:f3da66175598 321 #define IS_SMBUS_TRANSFER_REQUEST(REQUEST) (((REQUEST) == SMBUS_GENERATE_STOP) || \
mbed_official 237:f3da66175598 322 ((REQUEST) == SMBUS_GENERATE_START_READ) || \
mbed_official 237:f3da66175598 323 ((REQUEST) == SMBUS_GENERATE_START_WRITE) || \
mbed_official 237:f3da66175598 324 ((REQUEST) == SMBUS_NO_STARTSTOP))
mbed_official 237:f3da66175598 325
mbed_official 237:f3da66175598 326 /**
mbed_official 237:f3da66175598 327 * @}
mbed_official 237:f3da66175598 328 */
mbed_official 237:f3da66175598 329
mbed_official 375:3d36234a1087 330 /** @defgroup SMBUS_XferOptions_definition SMBUS XferOptions definition
mbed_official 237:f3da66175598 331 * @{
mbed_official 237:f3da66175598 332 */
mbed_official 237:f3da66175598 333
mbed_official 237:f3da66175598 334 #define SMBUS_FIRST_FRAME ((uint32_t)(SMBUS_SOFTEND_MODE))
mbed_official 237:f3da66175598 335 #define SMBUS_NEXT_FRAME ((uint32_t)(SMBUS_RELOAD_MODE | SMBUS_SOFTEND_MODE))
mbed_official 237:f3da66175598 336 #define SMBUS_FIRST_AND_LAST_FRAME_NO_PEC SMBUS_AUTOEND_MODE
mbed_official 237:f3da66175598 337 #define SMBUS_LAST_FRAME_NO_PEC SMBUS_AUTOEND_MODE
mbed_official 237:f3da66175598 338 #define SMBUS_FIRST_AND_LAST_FRAME_WITH_PEC ((uint32_t)(SMBUS_AUTOEND_MODE | SMBUS_SENDPEC_MODE))
mbed_official 237:f3da66175598 339 #define SMBUS_LAST_FRAME_WITH_PEC ((uint32_t)(SMBUS_AUTOEND_MODE | SMBUS_SENDPEC_MODE))
mbed_official 237:f3da66175598 340
mbed_official 237:f3da66175598 341 #define IS_SMBUS_TRANSFER_OPTIONS_REQUEST(REQUEST) (((REQUEST) == SMBUS_FIRST_FRAME) || \
mbed_official 237:f3da66175598 342 ((REQUEST) == SMBUS_NEXT_FRAME) || \
mbed_official 237:f3da66175598 343 ((REQUEST) == SMBUS_FIRST_AND_LAST_FRAME_NO_PEC) || \
mbed_official 237:f3da66175598 344 ((REQUEST) == SMBUS_LAST_FRAME_NO_PEC) || \
mbed_official 237:f3da66175598 345 ((REQUEST) == SMBUS_FIRST_AND_LAST_FRAME_WITH_PEC) || \
mbed_official 237:f3da66175598 346 ((REQUEST) == SMBUS_LAST_FRAME_WITH_PEC))
mbed_official 237:f3da66175598 347
mbed_official 237:f3da66175598 348 /**
mbed_official 237:f3da66175598 349 * @}
mbed_official 237:f3da66175598 350 */
mbed_official 237:f3da66175598 351
mbed_official 375:3d36234a1087 352 /** @defgroup SMBUS_Interrupt_configuration_definition SMBUS Interrupt configuration definition
mbed_official 237:f3da66175598 353 * @brief SMBUS Interrupt definition
mbed_official 237:f3da66175598 354 * Elements values convention: 0xXXXXXXXX
mbed_official 237:f3da66175598 355 * - XXXXXXXX : Interrupt control mask
mbed_official 237:f3da66175598 356 * @{
mbed_official 237:f3da66175598 357 */
mbed_official 237:f3da66175598 358 #define SMBUS_IT_ERRI I2C_CR1_ERRIE
mbed_official 237:f3da66175598 359 #define SMBUS_IT_TCI I2C_CR1_TCIE
mbed_official 237:f3da66175598 360 #define SMBUS_IT_STOPI I2C_CR1_STOPIE
mbed_official 237:f3da66175598 361 #define SMBUS_IT_NACKI I2C_CR1_NACKIE
mbed_official 237:f3da66175598 362 #define SMBUS_IT_ADDRI I2C_CR1_ADDRIE
mbed_official 237:f3da66175598 363 #define SMBUS_IT_RXI I2C_CR1_RXIE
mbed_official 237:f3da66175598 364 #define SMBUS_IT_TXI I2C_CR1_TXIE
mbed_official 237:f3da66175598 365 #define SMBUS_IT_TX (SMBUS_IT_ERRI | SMBUS_IT_TCI | SMBUS_IT_STOPI | SMBUS_IT_NACKI | SMBUS_IT_TXI)
mbed_official 237:f3da66175598 366 #define SMBUS_IT_RX (SMBUS_IT_ERRI | SMBUS_IT_TCI | SMBUS_IT_NACKI | SMBUS_IT_RXI)
mbed_official 237:f3da66175598 367 #define SMBUS_IT_ALERT (SMBUS_IT_ERRI)
mbed_official 237:f3da66175598 368 #define SMBUS_IT_ADDR (SMBUS_IT_ADDRI | SMBUS_IT_STOPI | SMBUS_IT_NACKI)
mbed_official 237:f3da66175598 369 /**
mbed_official 237:f3da66175598 370 * @}
mbed_official 237:f3da66175598 371 */
mbed_official 237:f3da66175598 372
mbed_official 375:3d36234a1087 373 /** @defgroup SMBUS_Flag_definition SMBUS Flag definition
mbed_official 237:f3da66175598 374 * @brief Flag definition
mbed_official 237:f3da66175598 375 * Elements values convention: 0xXXXXYYYY
mbed_official 237:f3da66175598 376 * - XXXXXXXX : Flag mask
mbed_official 237:f3da66175598 377 * @{
mbed_official 237:f3da66175598 378 */
mbed_official 237:f3da66175598 379
mbed_official 237:f3da66175598 380 #define SMBUS_FLAG_TXE I2C_ISR_TXE
mbed_official 237:f3da66175598 381 #define SMBUS_FLAG_TXIS I2C_ISR_TXIS
mbed_official 237:f3da66175598 382 #define SMBUS_FLAG_RXNE I2C_ISR_RXNE
mbed_official 237:f3da66175598 383 #define SMBUS_FLAG_ADDR I2C_ISR_ADDR
mbed_official 237:f3da66175598 384 #define SMBUS_FLAG_AF I2C_ISR_NACKF
mbed_official 237:f3da66175598 385 #define SMBUS_FLAG_STOPF I2C_ISR_STOPF
mbed_official 237:f3da66175598 386 #define SMBUS_FLAG_TC I2C_ISR_TC
mbed_official 237:f3da66175598 387 #define SMBUS_FLAG_TCR I2C_ISR_TCR
mbed_official 237:f3da66175598 388 #define SMBUS_FLAG_BERR I2C_ISR_BERR
mbed_official 237:f3da66175598 389 #define SMBUS_FLAG_ARLO I2C_ISR_ARLO
mbed_official 237:f3da66175598 390 #define SMBUS_FLAG_OVR I2C_ISR_OVR
mbed_official 237:f3da66175598 391 #define SMBUS_FLAG_PECERR I2C_ISR_PECERR
mbed_official 237:f3da66175598 392 #define SMBUS_FLAG_TIMEOUT I2C_ISR_TIMEOUT
mbed_official 237:f3da66175598 393 #define SMBUS_FLAG_ALERT I2C_ISR_ALERT
mbed_official 237:f3da66175598 394 #define SMBUS_FLAG_BUSY I2C_ISR_BUSY
mbed_official 237:f3da66175598 395 #define SMBUS_FLAG_DIR I2C_ISR_DIR
mbed_official 237:f3da66175598 396 /**
mbed_official 237:f3da66175598 397 * @}
mbed_official 237:f3da66175598 398 */
mbed_official 237:f3da66175598 399
mbed_official 237:f3da66175598 400 /**
mbed_official 237:f3da66175598 401 * @}
mbed_official 237:f3da66175598 402 */
mbed_official 237:f3da66175598 403
mbed_official 237:f3da66175598 404 /* Exported macros ------------------------------------------------------------*/
mbed_official 375:3d36234a1087 405 /** @defgroup SMBUS_Exported_Macros SMBUS Exported Macros
mbed_official 237:f3da66175598 406 * @{
mbed_official 237:f3da66175598 407 */
mbed_official 237:f3da66175598 408
mbed_official 237:f3da66175598 409 /** @brief Reset SMBUS handle state
mbed_official 237:f3da66175598 410 * @param __HANDLE__: SMBUS handle.
mbed_official 237:f3da66175598 411 * @retval None
mbed_official 237:f3da66175598 412 */
mbed_official 237:f3da66175598 413 #define __HAL_SMBUS_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_SMBUS_STATE_RESET)
mbed_official 237:f3da66175598 414
mbed_official 237:f3da66175598 415 /** @brief Enable or disable the specified SMBUS interrupts.
mbed_official 237:f3da66175598 416 * @param __HANDLE__: specifies the SMBUS Handle.
mbed_official 237:f3da66175598 417 * This parameter can be SMBUS where x: 1 or 2 to select the SMBUS peripheral.
mbed_official 237:f3da66175598 418 * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
mbed_official 237:f3da66175598 419 * This parameter can be one of the following values:
mbed_official 237:f3da66175598 420 * @arg SMBUS_IT_ERRI: Errors interrupt enable
mbed_official 237:f3da66175598 421 * @arg SMBUS_IT_TCI: Transfer complete interrupt enable
mbed_official 237:f3da66175598 422 * @arg SMBUS_IT_STOPI: STOP detection interrupt enable
mbed_official 237:f3da66175598 423 * @arg SMBUS_IT_NACKI: NACK received interrupt enable
mbed_official 237:f3da66175598 424 * @arg SMBUS_IT_ADDRI: Address match interrupt enable
mbed_official 237:f3da66175598 425 * @arg SMBUS_IT_RXI: RX interrupt enable
mbed_official 237:f3da66175598 426 * @arg SMBUS_IT_TXI: TX interrupt enable
mbed_official 237:f3da66175598 427 *
mbed_official 237:f3da66175598 428 * @retval None
mbed_official 237:f3da66175598 429 */
mbed_official 237:f3da66175598 430
mbed_official 237:f3da66175598 431 #define __HAL_SMBUS_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR1 |= (__INTERRUPT__))
mbed_official 237:f3da66175598 432 #define __HAL_SMBUS_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR1 &= (~(__INTERRUPT__)))
mbed_official 237:f3da66175598 433
mbed_official 237:f3da66175598 434 /** @brief Checks if the specified SMBUS interrupt source is enabled or disabled.
mbed_official 237:f3da66175598 435 * @param __HANDLE__: specifies the SMBUS Handle.
mbed_official 237:f3da66175598 436 * This parameter can be SMBUS where x: 1 or 2 to select the SMBUS peripheral.
mbed_official 237:f3da66175598 437 * @param __INTERRUPT__: specifies the SMBUS interrupt source to check.
mbed_official 237:f3da66175598 438 * This parameter can be one of the following values:
mbed_official 237:f3da66175598 439 * @arg SMBUS_IT_ERRI: Errors interrupt enable
mbed_official 237:f3da66175598 440 * @arg SMBUS_IT_TCI: Transfer complete interrupt enable
mbed_official 237:f3da66175598 441 * @arg SMBUS_IT_STOPI: STOP detection interrupt enable
mbed_official 237:f3da66175598 442 * @arg SMBUS_IT_NACKI: NACK received interrupt enable
mbed_official 237:f3da66175598 443 * @arg SMBUS_IT_ADDRI: Address match interrupt enable
mbed_official 237:f3da66175598 444 * @arg SMBUS_IT_RXI: RX interrupt enable
mbed_official 237:f3da66175598 445 * @arg SMBUS_IT_TXI: TX interrupt enable
mbed_official 237:f3da66175598 446 *
mbed_official 237:f3da66175598 447 * @retval The new state of __IT__ (TRUE or FALSE).
mbed_official 237:f3da66175598 448 */
mbed_official 237:f3da66175598 449 #define __HAL_SMBUS_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CR1 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
mbed_official 237:f3da66175598 450
mbed_official 237:f3da66175598 451 /** @brief Checks whether the specified SMBUS flag is set or not.
mbed_official 237:f3da66175598 452 * @param __HANDLE__: specifies the SMBUS Handle.
mbed_official 237:f3da66175598 453 * This parameter can be SMBUS where x: 1 or 2 to select the SMBUS peripheral.
mbed_official 237:f3da66175598 454 * @param __FLAG__: specifies the flag to check.
mbed_official 237:f3da66175598 455 * This parameter can be one of the following values:
mbed_official 237:f3da66175598 456 * @arg SMBUS_FLAG_TXE: Transmit data register empty
mbed_official 237:f3da66175598 457 * @arg SMBUS_FLAG_TXIS: Transmit interrupt status
mbed_official 237:f3da66175598 458 * @arg SMBUS_FLAG_RXNE: Receive data register not empty
mbed_official 237:f3da66175598 459 * @arg SMBUS_FLAG_ADDR: Address matched (slave mode)
mbed_official 237:f3da66175598 460 * @arg SMBUS_FLAG_AF: NACK received flag
mbed_official 237:f3da66175598 461 * @arg SMBUS_FLAG_STOPF: STOP detection flag
mbed_official 237:f3da66175598 462 * @arg SMBUS_FLAG_TC: Transfer complete (master mode)
mbed_official 237:f3da66175598 463 * @arg SMBUS_FLAG_TCR: Transfer complete reload
mbed_official 237:f3da66175598 464 * @arg SMBUS_FLAG_BERR: Bus error
mbed_official 237:f3da66175598 465 * @arg SMBUS_FLAG_ARLO: Arbitration lost
mbed_official 237:f3da66175598 466 * @arg SMBUS_FLAG_OVR: Overrun/Underrun
mbed_official 237:f3da66175598 467 * @arg SMBUS_FLAG_PECERR: PEC error in reception
mbed_official 237:f3da66175598 468 * @arg SMBUS_FLAG_TIMEOUT: Timeout or Tlow detection flag
mbed_official 237:f3da66175598 469 * @arg SMBUS_FLAG_ALERT: SMBus alert
mbed_official 237:f3da66175598 470 * @arg SMBUS_FLAG_BUSY: Bus busy
mbed_official 237:f3da66175598 471 * @arg SMBUS_FLAG_DIR: Transfer direction (slave mode)
mbed_official 237:f3da66175598 472 *
mbed_official 237:f3da66175598 473 * @retval The new state of __FLAG__ (TRUE or FALSE).
mbed_official 237:f3da66175598 474 */
mbed_official 237:f3da66175598 475 #define SMBUS_FLAG_MASK ((uint32_t)0x0001FFFF)
mbed_official 237:f3da66175598 476 #define __HAL_SMBUS_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & ((__FLAG__) & SMBUS_FLAG_MASK)) == ((__FLAG__) & SMBUS_FLAG_MASK)))
mbed_official 237:f3da66175598 477
mbed_official 237:f3da66175598 478 /** @brief Clears the SMBUS pending flags which are cleared by writing 1 in a specific bit.
mbed_official 237:f3da66175598 479 * @param __HANDLE__: specifies the SMBUS Handle.
mbed_official 237:f3da66175598 480 * This parameter can be SMBUS where x: 1 or 2 to select the SMBUS peripheral.
mbed_official 237:f3da66175598 481 * @param __FLAG__: specifies the flag to clear.
mbed_official 237:f3da66175598 482 * This parameter can be any combination of the following values:
mbed_official 237:f3da66175598 483 * @arg SMBUS_FLAG_ADDR: Address matched (slave mode)
mbed_official 237:f3da66175598 484 * @arg SMBUS_FLAG_AF: NACK received flag
mbed_official 237:f3da66175598 485 * @arg SMBUS_FLAG_STOPF: STOP detection flag
mbed_official 237:f3da66175598 486 * @arg SMBUS_FLAG_BERR: Bus error
mbed_official 237:f3da66175598 487 * @arg SMBUS_FLAG_ARLO: Arbitration lost
mbed_official 237:f3da66175598 488 * @arg SMBUS_FLAG_OVR: Overrun/Underrun
mbed_official 237:f3da66175598 489 * @arg SMBUS_FLAG_PECERR: PEC error in reception
mbed_official 237:f3da66175598 490 * @arg SMBUS_FLAG_TIMEOUT: Timeout or Tlow detection flag
mbed_official 237:f3da66175598 491 * @arg SMBUS_FLAG_ALERT: SMBus alert
mbed_official 237:f3da66175598 492 *
mbed_official 237:f3da66175598 493 * @retval None
mbed_official 237:f3da66175598 494 */
mbed_official 237:f3da66175598 495 #define __HAL_SMBUS_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ICR = (__FLAG__))
mbed_official 237:f3da66175598 496
mbed_official 237:f3da66175598 497
mbed_official 237:f3da66175598 498 #define __HAL_SMBUS_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= I2C_CR1_PE)
mbed_official 237:f3da66175598 499 #define __HAL_SMBUS_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~I2C_CR1_PE)
mbed_official 237:f3da66175598 500
mbed_official 237:f3da66175598 501 #define __HAL_SMBUS_RESET_CR1(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= (uint32_t)~((uint32_t)(I2C_CR1_SMBHEN | I2C_CR1_SMBDEN | I2C_CR1_PECEN)))
mbed_official 237:f3da66175598 502 #define __HAL_SMBUS_RESET_CR2(__HANDLE__) ((__HANDLE__)->Instance->CR2 &= (uint32_t)~((uint32_t)(I2C_CR2_SADD | I2C_CR2_HEAD10R | I2C_CR2_NBYTES | I2C_CR2_RELOAD | I2C_CR2_RD_WRN)))
mbed_official 237:f3da66175598 503
mbed_official 237:f3da66175598 504 #define __HAL_SMBUS_GENERATE_START(__ADDMODE__,__ADDRESS__) (((__ADDMODE__) == SMBUS_ADDRESSINGMODE_7BIT) ? (uint32_t)((((uint32_t)(__ADDRESS__) & (I2C_CR2_SADD)) | (I2C_CR2_START) | (I2C_CR2_AUTOEND)) & (~I2C_CR2_RD_WRN)) : \
mbed_official 237:f3da66175598 505 (uint32_t)((((uint32_t)(__ADDRESS__) & (I2C_CR2_SADD)) | (I2C_CR2_ADD10) | (I2C_CR2_START)) & (~I2C_CR2_RD_WRN)))
mbed_official 237:f3da66175598 506
mbed_official 237:f3da66175598 507 #define __HAL_SMBUS_GET_ADDR_MATCH(__HANDLE__) (((__HANDLE__)->Instance->ISR & I2C_ISR_ADDCODE) >> 17)
mbed_official 237:f3da66175598 508 #define __HAL_SMBUS_GET_DIR(__HANDLE__) (((__HANDLE__)->Instance->ISR & I2C_ISR_DIR) >> 16)
mbed_official 237:f3da66175598 509 #define __HAL_SMBUS_GET_STOP_MODE(__HANDLE__) ((__HANDLE__)->Instance->CR2 & I2C_CR2_AUTOEND)
mbed_official 237:f3da66175598 510 #define __HAL_SMBUS_GET_PEC_MODE(__HANDLE__) ((__HANDLE__)->Instance->CR2 & I2C_CR2_PECBYTE)
mbed_official 237:f3da66175598 511 #define __HAL_SMBUS_GET_ALERT_ENABLED(__HANDLE__) ((__HANDLE__)->Instance->CR1 & I2C_CR1_ALERTEN)
mbed_official 237:f3da66175598 512 #define __HAL_SMBUS_GENERATE_NACK(__HANDLE__) ((__HANDLE__)->Instance->CR2 |= I2C_CR2_NACK)
mbed_official 237:f3da66175598 513
mbed_official 237:f3da66175598 514 #define IS_SMBUS_OWN_ADDRESS1(ADDRESS1) ((ADDRESS1) <= (uint32_t)0x000003FF)
mbed_official 237:f3da66175598 515 #define IS_SMBUS_OWN_ADDRESS2(ADDRESS2) ((ADDRESS2) <= (uint16_t)0x00FF)
mbed_official 237:f3da66175598 516 /**
mbed_official 237:f3da66175598 517 * @}
mbed_official 237:f3da66175598 518 */
mbed_official 237:f3da66175598 519
mbed_official 237:f3da66175598 520 /* Exported functions --------------------------------------------------------*/
mbed_official 375:3d36234a1087 521 /** @addtogroup SMBUS_Exported_Functions SMBUS Exported Functions
mbed_official 375:3d36234a1087 522 * @{
mbed_official 375:3d36234a1087 523 */
mbed_official 375:3d36234a1087 524
mbed_official 375:3d36234a1087 525 /** @addtogroup SMBUS_Exported_Functions_Group1 Initialization and de-initialization functions
mbed_official 375:3d36234a1087 526 * @{
mbed_official 375:3d36234a1087 527 */
mbed_official 375:3d36234a1087 528
mbed_official 237:f3da66175598 529 /* Initialization and de-initialization functions **********************************/
mbed_official 237:f3da66175598 530 HAL_StatusTypeDef HAL_SMBUS_Init(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 531 HAL_StatusTypeDef HAL_SMBUS_DeInit (SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 532 void HAL_SMBUS_MspInit(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 533 void HAL_SMBUS_MspDeInit(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 534
mbed_official 375:3d36234a1087 535 /**
mbed_official 375:3d36234a1087 536 * @}
mbed_official 375:3d36234a1087 537 */
mbed_official 375:3d36234a1087 538
mbed_official 375:3d36234a1087 539 /** @addtogroup SMBUS_Exported_Functions_Group2 Input and Output operation functions
mbed_official 375:3d36234a1087 540 * @{
mbed_official 375:3d36234a1087 541 */
mbed_official 375:3d36234a1087 542
mbed_official 237:f3da66175598 543 /* IO operation functions *****************************************************/
mbed_official 375:3d36234a1087 544 /** @addtogroup Blocking_mode_Polling Blocking mode Polling
mbed_official 375:3d36234a1087 545 * @{
mbed_official 375:3d36234a1087 546 */
mbed_official 237:f3da66175598 547 /******* Blocking mode: Polling */
mbed_official 237:f3da66175598 548 HAL_StatusTypeDef HAL_SMBUS_IsDeviceReady(SMBUS_HandleTypeDef *hsmbus, uint16_t DevAddress, uint32_t Trials, uint32_t Timeout);
mbed_official 375:3d36234a1087 549 /**
mbed_official 375:3d36234a1087 550 * @}
mbed_official 375:3d36234a1087 551 */
mbed_official 237:f3da66175598 552
mbed_official 375:3d36234a1087 553 /** @addtogroup Non-Blocking_mode_Interrupt Non-Blocking mode Interrupt
mbed_official 375:3d36234a1087 554 * @{
mbed_official 375:3d36234a1087 555 */
mbed_official 237:f3da66175598 556 /******* Non-Blocking mode: Interrupt */
mbed_official 237:f3da66175598 557 HAL_StatusTypeDef HAL_SMBUS_Master_Transmit_IT(SMBUS_HandleTypeDef *hsmbus, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
mbed_official 237:f3da66175598 558 HAL_StatusTypeDef HAL_SMBUS_Master_Receive_IT(SMBUS_HandleTypeDef *hsmbus, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
mbed_official 237:f3da66175598 559 HAL_StatusTypeDef HAL_SMBUS_Master_Abort_IT(SMBUS_HandleTypeDef *hsmbus, uint16_t DevAddress);
mbed_official 237:f3da66175598 560 HAL_StatusTypeDef HAL_SMBUS_Slave_Transmit_IT(SMBUS_HandleTypeDef *hsmbus, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
mbed_official 237:f3da66175598 561 HAL_StatusTypeDef HAL_SMBUS_Slave_Receive_IT(SMBUS_HandleTypeDef *hsmbus, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
mbed_official 237:f3da66175598 562
mbed_official 375:3d36234a1087 563 HAL_StatusTypeDef HAL_SMBUS_EnableAlert_IT(SMBUS_HandleTypeDef *hsmbus);
mbed_official 375:3d36234a1087 564 HAL_StatusTypeDef HAL_SMBUS_DisableAlert_IT(SMBUS_HandleTypeDef *hsmbus);
mbed_official 375:3d36234a1087 565 HAL_StatusTypeDef HAL_SMBUS_Slave_Listen_IT(SMBUS_HandleTypeDef *hsmbus);
mbed_official 375:3d36234a1087 566 HAL_StatusTypeDef HAL_SMBUS_DisableListen_IT(SMBUS_HandleTypeDef *hsmbus);
mbed_official 375:3d36234a1087 567 /** @defgroup Aliases_Exported_Functions Aliases for Exported Functions
mbed_official 375:3d36234a1087 568 * @brief Aliases for new API and to insure inter STM32 series compatibility
mbed_official 375:3d36234a1087 569 * @{
mbed_official 375:3d36234a1087 570 */
mbed_official 375:3d36234a1087 571 /* Aliases for new API and to insure inter STM32 series compatibility */
mbed_official 375:3d36234a1087 572 #define HAL_SMBUS_EnableListen_IT HAL_SMBUS_Slave_Listen_IT
mbed_official 375:3d36234a1087 573 /**
mbed_official 375:3d36234a1087 574 * @}
mbed_official 375:3d36234a1087 575 */
mbed_official 375:3d36234a1087 576
mbed_official 375:3d36234a1087 577 /**
mbed_official 375:3d36234a1087 578 * @}
mbed_official 375:3d36234a1087 579 */
mbed_official 375:3d36234a1087 580
mbed_official 375:3d36234a1087 581 /** @addtogroup IRQ_Handler_and_Callbacks IRQ Handler and Callbacks
mbed_official 375:3d36234a1087 582 * @{
mbed_official 375:3d36234a1087 583 */
mbed_official 237:f3da66175598 584 /******* SMBUS IRQHandler and Callbacks used in non blocking modes (Interrupt) */
mbed_official 237:f3da66175598 585 void HAL_SMBUS_EV_IRQHandler(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 586 void HAL_SMBUS_ER_IRQHandler(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 587 void HAL_SMBUS_MasterTxCpltCallback(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 588 void HAL_SMBUS_MasterRxCpltCallback(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 589 void HAL_SMBUS_SlaveTxCpltCallback(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 590 void HAL_SMBUS_SlaveRxCpltCallback(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 591 void HAL_SMBUS_SlaveAddrCallback(SMBUS_HandleTypeDef *hsmbus, uint8_t TransferDirection, uint16_t AddrMatchCode);
mbed_official 237:f3da66175598 592 void HAL_SMBUS_SlaveListenCpltCallback(SMBUS_HandleTypeDef *hsmbus);
mbed_official 375:3d36234a1087 593
mbed_official 375:3d36234a1087 594 /** @addtogroup Aliases_Exported_Functions Aliases for Exported Functions
mbed_official 375:3d36234a1087 595 * @brief Aliases for new API and to insure inter STM32 series compatibility
mbed_official 375:3d36234a1087 596 * @{
mbed_official 375:3d36234a1087 597 */
mbed_official 237:f3da66175598 598 /* Aliases for new API and to insure inter STM32 series compatibility */
mbed_official 237:f3da66175598 599 #define HAL_SMBUS_AddrCallback HAL_SMBUS_SlaveAddrCallback
mbed_official 237:f3da66175598 600 #define HAL_SMBUS_ListenCpltCallback HAL_SMBUS_SlaveListenCpltCallback
mbed_official 375:3d36234a1087 601 /**
mbed_official 375:3d36234a1087 602 * @}
mbed_official 375:3d36234a1087 603 */
mbed_official 237:f3da66175598 604
mbed_official 237:f3da66175598 605 void HAL_SMBUS_ErrorCallback(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 606
mbed_official 375:3d36234a1087 607 /**
mbed_official 375:3d36234a1087 608 * @}
mbed_official 375:3d36234a1087 609 */
mbed_official 375:3d36234a1087 610
mbed_official 375:3d36234a1087 611 /**
mbed_official 375:3d36234a1087 612 * @}
mbed_official 375:3d36234a1087 613 */
mbed_official 375:3d36234a1087 614
mbed_official 375:3d36234a1087 615 /** @addtogroup SMBUS_Exported_Functions_Group3 Peripheral State and Errors functions
mbed_official 375:3d36234a1087 616 * @{
mbed_official 375:3d36234a1087 617 */
mbed_official 375:3d36234a1087 618
mbed_official 237:f3da66175598 619 /* Peripheral State and Errors functions **************************************************/
mbed_official 237:f3da66175598 620 HAL_SMBUS_StateTypeDef HAL_SMBUS_GetState(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 621 uint32_t HAL_SMBUS_GetError(SMBUS_HandleTypeDef *hsmbus);
mbed_official 237:f3da66175598 622
mbed_official 237:f3da66175598 623 /**
mbed_official 237:f3da66175598 624 * @}
mbed_official 375:3d36234a1087 625 */
mbed_official 375:3d36234a1087 626
mbed_official 375:3d36234a1087 627 /**
mbed_official 375:3d36234a1087 628 * @}
mbed_official 237:f3da66175598 629 */
mbed_official 237:f3da66175598 630
mbed_official 237:f3da66175598 631 /**
mbed_official 237:f3da66175598 632 * @}
mbed_official 237:f3da66175598 633 */
mbed_official 237:f3da66175598 634
mbed_official 375:3d36234a1087 635 /**
mbed_official 375:3d36234a1087 636 * @}
mbed_official 375:3d36234a1087 637 */
mbed_official 237:f3da66175598 638 #ifdef __cplusplus
mbed_official 237:f3da66175598 639 }
mbed_official 237:f3da66175598 640 #endif
mbed_official 237:f3da66175598 641
mbed_official 237:f3da66175598 642
mbed_official 237:f3da66175598 643 #endif /* __STM32F3xx_HAL_SMBUS_H */
mbed_official 237:f3da66175598 644
mbed_official 237:f3da66175598 645 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/