mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Wed Jun 11 15:14:05 2014 +0100
Revision:
85:024bf7f99721
Child:
92:4fc01daae5a5
Release 85 of the mbed library

Main changes:

- K64F Ethernet fixes
- Updated tests
- Fixes for various mbed targets
- Code cleanup: fixed warnings, more consistent code style
- GCC support for K64F

There is a known issue with the I2C interface on some ST targets. If you
find the I2C interface problematic on your ST board, please log a bug
against this on mbed.org.

Who changed what in which revision?

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