Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
108:34e6b704fe68
.

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
Kojto 108:34e6b704fe68 5 * @version V1.3.0
Kojto 108:34e6b704fe68 6 * @date 26-June-2015
bogdanm 85:024bf7f99721 7 * @brief Header file of SMBUS HAL module.
bogdanm 85:024bf7f99721 8 ******************************************************************************
bogdanm 85:024bf7f99721 9 * @attention
bogdanm 85:024bf7f99721 10 *
Kojto 108:34e6b704fe68 11 * <h2><center>&copy; COPYRIGHT(c) 2015 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 92:4fc01daae5a5 58 /** @defgroup SMBUS_Exported_Types SMBUS Exported Types
bogdanm 92:4fc01daae5a5 59 * @{
bogdanm 92:4fc01daae5a5 60 */
bogdanm 92:4fc01daae5a5 61
Kojto 108:34e6b704fe68 62 /** @defgroup SMBUS_Configuration_Structure_definition SMBUS Configuration Structure definition
bogdanm 85:024bf7f99721 63 * @brief SMBUS Configuration Structure definition
Kojto 108:34e6b704fe68 64 * @{
bogdanm 85:024bf7f99721 65 */
bogdanm 85:024bf7f99721 66 typedef struct
bogdanm 85:024bf7f99721 67 {
bogdanm 85:024bf7f99721 68 uint32_t Timing; /*!< Specifies the SMBUS_TIMINGR_register value.
bogdanm 85:024bf7f99721 69 This parameter calculated by referring to SMBUS initialization
bogdanm 85:024bf7f99721 70 section in Reference manual */
bogdanm 85:024bf7f99721 71 uint32_t AnalogFilter; /*!< Specifies if Analog Filter is enable or not.
Kojto 108:34e6b704fe68 72 This parameter can be a value of @ref SMBUS_Analog_Filter */
bogdanm 85:024bf7f99721 73
bogdanm 85:024bf7f99721 74 uint32_t OwnAddress1; /*!< Specifies the first device own address.
bogdanm 85:024bf7f99721 75 This parameter can be a 7-bit or 10-bit address. */
bogdanm 85:024bf7f99721 76
bogdanm 85:024bf7f99721 77 uint32_t AddressingMode; /*!< Specifies if 7-bit or 10-bit addressing mode for master is selected.
bogdanm 85:024bf7f99721 78 This parameter can be a value of @ref SMBUS_addressing_mode */
bogdanm 85:024bf7f99721 79
bogdanm 85:024bf7f99721 80 uint32_t DualAddressMode; /*!< Specifies if dual addressing mode is selected.
bogdanm 85:024bf7f99721 81 This parameter can be a value of @ref SMBUS_dual_addressing_mode */
bogdanm 85:024bf7f99721 82
bogdanm 85:024bf7f99721 83 uint32_t OwnAddress2; /*!< Specifies the second device own address if dual addressing mode is selected
bogdanm 85:024bf7f99721 84 This parameter can be a 7-bit address. */
bogdanm 85:024bf7f99721 85
bogdanm 85:024bf7f99721 86 uint32_t OwnAddress2Masks; /*!< Specifies the acknoledge mask address second device own address if dual addressing mode is selected
bogdanm 85:024bf7f99721 87 This parameter can be a value of @ref SMBUS_own_address2_masks. */
bogdanm 85:024bf7f99721 88
bogdanm 85:024bf7f99721 89 uint32_t GeneralCallMode; /*!< Specifies if general call mode is selected.
bogdanm 85:024bf7f99721 90 This parameter can be a value of @ref SMBUS_general_call_addressing_mode. */
bogdanm 85:024bf7f99721 91
bogdanm 85:024bf7f99721 92 uint32_t NoStretchMode; /*!< Specifies if nostretch mode is selected.
bogdanm 85:024bf7f99721 93 This parameter can be a value of @ref SMBUS_nostretch_mode */
bogdanm 85:024bf7f99721 94
bogdanm 85:024bf7f99721 95 uint32_t PacketErrorCheckMode; /*!< Specifies if Packet Error Check mode is selected.
bogdanm 85:024bf7f99721 96 This parameter can be a value of @ref SMBUS_packet_error_check_mode */
bogdanm 85:024bf7f99721 97
bogdanm 85:024bf7f99721 98 uint32_t PeripheralMode; /*!< Specifies which mode of Periphal is selected.
bogdanm 85:024bf7f99721 99 This parameter can be a value of @ref SMBUS_peripheral_mode */
bogdanm 85:024bf7f99721 100
bogdanm 85:024bf7f99721 101 uint32_t SMBusTimeout; /*!< Specifies the content of the 32 Bits SMBUS_TIMEOUT_register value.
bogdanm 85:024bf7f99721 102 (Enable bits and different timeout values)
bogdanm 85:024bf7f99721 103 This parameter calculated by referring to SMBUS initialization
bogdanm 85:024bf7f99721 104 section in Reference manual */
bogdanm 85:024bf7f99721 105 } SMBUS_InitTypeDef;
Kojto 108:34e6b704fe68 106 /**
Kojto 108:34e6b704fe68 107 * @}
Kojto 108:34e6b704fe68 108 */
bogdanm 85:024bf7f99721 109
Kojto 108:34e6b704fe68 110 /** @defgroup HAL_state_definition HAL state definition
Kojto 108:34e6b704fe68 111 * @brief HAL State definition
Kojto 108:34e6b704fe68 112 * @{
Kojto 108:34e6b704fe68 113 */
Kojto 108:34e6b704fe68 114 #define HAL_SMBUS_STATE_RESET ((uint32_t)0x00000000) /*!< SMBUS not yet initialized or disabled */
Kojto 108:34e6b704fe68 115 #define HAL_SMBUS_STATE_READY ((uint32_t)0x00000001) /*!< SMBUS initialized and ready for use */
Kojto 108:34e6b704fe68 116 #define HAL_SMBUS_STATE_BUSY ((uint32_t)0x00000002) /*!< SMBUS internal process is ongoing */
Kojto 108:34e6b704fe68 117 #define HAL_SMBUS_STATE_MASTER_BUSY_TX ((uint32_t)0x00000012) /*!< Master Data Transmission process is ongoing */
Kojto 108:34e6b704fe68 118 #define HAL_SMBUS_STATE_MASTER_BUSY_RX ((uint32_t)0x00000022) /*!< Master Data Reception process is ongoing */
Kojto 108:34e6b704fe68 119 #define HAL_SMBUS_STATE_SLAVE_BUSY_TX ((uint32_t)0x00000032) /*!< Slave Data Transmission process is ongoing */
Kojto 108:34e6b704fe68 120 #define HAL_SMBUS_STATE_SLAVE_BUSY_RX ((uint32_t)0x00000042) /*!< Slave Data Reception process is ongoing */
Kojto 108:34e6b704fe68 121 #define HAL_SMBUS_STATE_TIMEOUT ((uint32_t)0x00000003) /*!< Timeout state */
Kojto 108:34e6b704fe68 122 #define HAL_SMBUS_STATE_ERROR ((uint32_t)0x00000004) /*!< Reception process is ongoing */
Kojto 108:34e6b704fe68 123 #define HAL_SMBUS_STATE_LISTEN ((uint32_t)0x00000008) /*!< Address Listen Mode is ongoing */
bogdanm 85:024bf7f99721 124 /**
Kojto 108:34e6b704fe68 125 * @}
Kojto 108:34e6b704fe68 126 */
Kojto 108:34e6b704fe68 127
Kojto 108:34e6b704fe68 128 /** @defgroup SMBUS_Error_Code_definition SMBUS Error Code definition
Kojto 108:34e6b704fe68 129 * @brief SMBUS Error Code definition
Kojto 108:34e6b704fe68 130 * @{
Kojto 108:34e6b704fe68 131 */
Kojto 108:34e6b704fe68 132 #define HAL_SMBUS_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
Kojto 108:34e6b704fe68 133 #define HAL_SMBUS_ERROR_BERR ((uint32_t)0x00000001) /*!< BERR error */
Kojto 108:34e6b704fe68 134 #define HAL_SMBUS_ERROR_ARLO ((uint32_t)0x00000002) /*!< ARLO error */
Kojto 108:34e6b704fe68 135 #define HAL_SMBUS_ERROR_ACKF ((uint32_t)0x00000004) /*!< ACKF error */
Kojto 108:34e6b704fe68 136 #define HAL_SMBUS_ERROR_OVR ((uint32_t)0x00000008) /*!< OVR error */
Kojto 108:34e6b704fe68 137 #define HAL_SMBUS_ERROR_HALTIMEOUT ((uint32_t)0x00000010) /*!< Timeout error */
Kojto 108:34e6b704fe68 138 #define HAL_SMBUS_ERROR_BUSTIMEOUT ((uint32_t)0x00000020) /*!< Bus Timeout error */
Kojto 108:34e6b704fe68 139 #define HAL_SMBUS_ERROR_ALERT ((uint32_t)0x00000040) /*!< Alert error */
Kojto 108:34e6b704fe68 140 #define HAL_SMBUS_ERROR_PECERR ((uint32_t)0x00000080) /*!< PEC error */
Kojto 108:34e6b704fe68 141 /**
Kojto 108:34e6b704fe68 142 * @}
Kojto 108:34e6b704fe68 143 */
Kojto 108:34e6b704fe68 144
Kojto 108:34e6b704fe68 145 /** @defgroup SMBUS_handle_Structure_definition SMBUS handle Structure definition
bogdanm 85:024bf7f99721 146 * @brief SMBUS handle Structure definition
Kojto 108:34e6b704fe68 147 * @{
bogdanm 85:024bf7f99721 148 */
bogdanm 85:024bf7f99721 149 typedef struct
bogdanm 85:024bf7f99721 150 {
bogdanm 85:024bf7f99721 151 I2C_TypeDef *Instance; /*!< SMBUS registers base address */
bogdanm 85:024bf7f99721 152
bogdanm 85:024bf7f99721 153 SMBUS_InitTypeDef Init; /*!< SMBUS communication parameters */
bogdanm 85:024bf7f99721 154
bogdanm 85:024bf7f99721 155 uint8_t *pBuffPtr; /*!< Pointer to SMBUS transfer buffer */
bogdanm 85:024bf7f99721 156
bogdanm 85:024bf7f99721 157 uint16_t XferSize; /*!< SMBUS transfer size */
bogdanm 85:024bf7f99721 158
bogdanm 85:024bf7f99721 159 __IO uint16_t XferCount; /*!< SMBUS transfer counter */
bogdanm 85:024bf7f99721 160
bogdanm 85:024bf7f99721 161 __IO uint32_t XferOptions; /*!< SMBUS transfer options */
bogdanm 85:024bf7f99721 162
Kojto 108:34e6b704fe68 163 __IO uint32_t PreviousState; /*!< SMBUS communication Previous state */
bogdanm 85:024bf7f99721 164
bogdanm 85:024bf7f99721 165 HAL_LockTypeDef Lock; /*!< SMBUS locking object */
bogdanm 85:024bf7f99721 166
Kojto 108:34e6b704fe68 167 __IO uint32_t State; /*!< SMBUS communication state */
bogdanm 85:024bf7f99721 168
Kojto 108:34e6b704fe68 169 __IO uint32_t ErrorCode; /*!< SMBUS Error code */
bogdanm 85:024bf7f99721 170
bogdanm 85:024bf7f99721 171 }SMBUS_HandleTypeDef;
bogdanm 92:4fc01daae5a5 172 /**
bogdanm 92:4fc01daae5a5 173 * @}
bogdanm 92:4fc01daae5a5 174 */
bogdanm 92:4fc01daae5a5 175
Kojto 108:34e6b704fe68 176 /**
Kojto 108:34e6b704fe68 177 * @}
Kojto 108:34e6b704fe68 178 */
bogdanm 85:024bf7f99721 179 /* Exported constants --------------------------------------------------------*/
bogdanm 85:024bf7f99721 180
bogdanm 92:4fc01daae5a5 181 /** @defgroup SMBUS_Exported_Constants SMBUS Exported Constants
bogdanm 85:024bf7f99721 182 * @{
bogdanm 85:024bf7f99721 183 */
bogdanm 85:024bf7f99721 184
bogdanm 92:4fc01daae5a5 185 /** @defgroup SMBUS_Analog_Filter SMBUS Analog Filter
bogdanm 85:024bf7f99721 186 * @{
bogdanm 85:024bf7f99721 187 */
Kojto 108:34e6b704fe68 188 #define SMBUS_ANALOGFILTER_ENABLE ((uint32_t)0x00000000)
Kojto 108:34e6b704fe68 189 #define SMBUS_ANALOGFILTER_DISABLE I2C_CR1_ANFOFF
bogdanm 85:024bf7f99721 190 /**
bogdanm 85:024bf7f99721 191 * @}
bogdanm 85:024bf7f99721 192 */
bogdanm 85:024bf7f99721 193
bogdanm 92:4fc01daae5a5 194 /** @defgroup SMBUS_addressing_mode SMBUS addressing mode
bogdanm 85:024bf7f99721 195 * @{
bogdanm 85:024bf7f99721 196 */
bogdanm 85:024bf7f99721 197 #define SMBUS_ADDRESSINGMODE_7BIT ((uint32_t)0x00000001)
bogdanm 85:024bf7f99721 198 #define SMBUS_ADDRESSINGMODE_10BIT ((uint32_t)0x00000002)
bogdanm 85:024bf7f99721 199 /**
bogdanm 85:024bf7f99721 200 * @}
bogdanm 85:024bf7f99721 201 */
bogdanm 85:024bf7f99721 202
bogdanm 92:4fc01daae5a5 203 /** @defgroup SMBUS_dual_addressing_mode SMBUS dual addressing mode
bogdanm 85:024bf7f99721 204 * @{
bogdanm 85:024bf7f99721 205 */
bogdanm 85:024bf7f99721 206
Kojto 108:34e6b704fe68 207 #define SMBUS_DUALADDRESS_DISABLE ((uint32_t)0x00000000)
Kojto 108:34e6b704fe68 208 #define SMBUS_DUALADDRESS_ENABLE I2C_OAR2_OA2EN
bogdanm 85:024bf7f99721 209 /**
bogdanm 85:024bf7f99721 210 * @}
bogdanm 85:024bf7f99721 211 */
bogdanm 85:024bf7f99721 212
bogdanm 92:4fc01daae5a5 213 /** @defgroup SMBUS_own_address2_masks SMBUS ownaddress2 masks
bogdanm 85:024bf7f99721 214 * @{
bogdanm 85:024bf7f99721 215 */
bogdanm 85:024bf7f99721 216
bogdanm 85:024bf7f99721 217 #define SMBUS_OA2_NOMASK ((uint8_t)0x00)
bogdanm 85:024bf7f99721 218 #define SMBUS_OA2_MASK01 ((uint8_t)0x01)
bogdanm 85:024bf7f99721 219 #define SMBUS_OA2_MASK02 ((uint8_t)0x02)
bogdanm 85:024bf7f99721 220 #define SMBUS_OA2_MASK03 ((uint8_t)0x03)
bogdanm 85:024bf7f99721 221 #define SMBUS_OA2_MASK04 ((uint8_t)0x04)
bogdanm 85:024bf7f99721 222 #define SMBUS_OA2_MASK05 ((uint8_t)0x05)
bogdanm 85:024bf7f99721 223 #define SMBUS_OA2_MASK06 ((uint8_t)0x06)
bogdanm 85:024bf7f99721 224 #define SMBUS_OA2_MASK07 ((uint8_t)0x07)
bogdanm 85:024bf7f99721 225 /**
bogdanm 85:024bf7f99721 226 * @}
bogdanm 85:024bf7f99721 227 */
bogdanm 85:024bf7f99721 228
bogdanm 85:024bf7f99721 229
bogdanm 92:4fc01daae5a5 230 /** @defgroup SMBUS_general_call_addressing_mode SMBUS general call addressing mode
bogdanm 85:024bf7f99721 231 * @{
bogdanm 85:024bf7f99721 232 */
Kojto 108:34e6b704fe68 233 #define SMBUS_GENERALCALL_DISABLE ((uint32_t)0x00000000)
Kojto 108:34e6b704fe68 234 #define SMBUS_GENERALCALL_ENABLE I2C_CR1_GCEN
bogdanm 85:024bf7f99721 235 /**
bogdanm 85:024bf7f99721 236 * @}
bogdanm 85:024bf7f99721 237 */
bogdanm 85:024bf7f99721 238
bogdanm 92:4fc01daae5a5 239 /** @defgroup SMBUS_nostretch_mode SMBUS nostretch mode
bogdanm 85:024bf7f99721 240 * @{
bogdanm 85:024bf7f99721 241 */
Kojto 108:34e6b704fe68 242 #define SMBUS_NOSTRETCH_DISABLE ((uint32_t)0x00000000)
Kojto 108:34e6b704fe68 243 #define SMBUS_NOSTRETCH_ENABLE I2C_CR1_NOSTRETCH
bogdanm 85:024bf7f99721 244 /**
bogdanm 85:024bf7f99721 245 * @}
bogdanm 85:024bf7f99721 246 */
bogdanm 85:024bf7f99721 247
bogdanm 92:4fc01daae5a5 248 /** @defgroup SMBUS_packet_error_check_mode SMBUS packet error check mode
bogdanm 85:024bf7f99721 249 * @{
bogdanm 85:024bf7f99721 250 */
Kojto 108:34e6b704fe68 251 #define SMBUS_PEC_DISABLE ((uint32_t)0x00000000)
Kojto 108:34e6b704fe68 252 #define SMBUS_PEC_ENABLE I2C_CR1_PECEN
bogdanm 85:024bf7f99721 253 /**
bogdanm 85:024bf7f99721 254 * @}
bogdanm 85:024bf7f99721 255 */
bogdanm 85:024bf7f99721 256
bogdanm 92:4fc01daae5a5 257 /** @defgroup SMBUS_peripheral_mode SMBUS peripheral mode
bogdanm 85:024bf7f99721 258 * @{
bogdanm 85:024bf7f99721 259 */
bogdanm 85:024bf7f99721 260 #define SMBUS_PERIPHERAL_MODE_SMBUS_HOST (uint32_t)(I2C_CR1_SMBHEN)
bogdanm 85:024bf7f99721 261 #define SMBUS_PERIPHERAL_MODE_SMBUS_SLAVE (uint32_t)(0x00000000)
bogdanm 85:024bf7f99721 262 #define SMBUS_PERIPHERAL_MODE_SMBUS_SLAVE_ARP (uint32_t)(I2C_CR1_SMBDEN)
bogdanm 85:024bf7f99721 263 /**
bogdanm 85:024bf7f99721 264 * @}
bogdanm 85:024bf7f99721 265 */
bogdanm 85:024bf7f99721 266
bogdanm 92:4fc01daae5a5 267 /** @defgroup SMBUS_ReloadEndMode_definition SMBUS ReloadEndMode definition
bogdanm 85:024bf7f99721 268 * @{
bogdanm 85:024bf7f99721 269 */
bogdanm 85:024bf7f99721 270
bogdanm 85:024bf7f99721 271 #define SMBUS_SOFTEND_MODE ((uint32_t)0x00000000)
bogdanm 85:024bf7f99721 272 #define SMBUS_RELOAD_MODE I2C_CR2_RELOAD
bogdanm 85:024bf7f99721 273 #define SMBUS_AUTOEND_MODE I2C_CR2_AUTOEND
bogdanm 85:024bf7f99721 274 #define SMBUS_SENDPEC_MODE I2C_CR2_PECBYTE
bogdanm 85:024bf7f99721 275 /**
bogdanm 85:024bf7f99721 276 * @}
bogdanm 85:024bf7f99721 277 */
bogdanm 85:024bf7f99721 278
bogdanm 92:4fc01daae5a5 279 /** @defgroup SMBUS_StartStopMode_definition SMBUS StartStopMode definition
bogdanm 85:024bf7f99721 280 * @{
bogdanm 85:024bf7f99721 281 */
bogdanm 85:024bf7f99721 282
bogdanm 85:024bf7f99721 283 #define SMBUS_NO_STARTSTOP ((uint32_t)0x00000000)
bogdanm 85:024bf7f99721 284 #define SMBUS_GENERATE_STOP I2C_CR2_STOP
bogdanm 85:024bf7f99721 285 #define SMBUS_GENERATE_START_READ (uint32_t)(I2C_CR2_START | I2C_CR2_RD_WRN)
bogdanm 85:024bf7f99721 286 #define SMBUS_GENERATE_START_WRITE I2C_CR2_START
bogdanm 85:024bf7f99721 287 /**
bogdanm 85:024bf7f99721 288 * @}
bogdanm 85:024bf7f99721 289 */
bogdanm 85:024bf7f99721 290
bogdanm 92:4fc01daae5a5 291 /** @defgroup SMBUS_XferOptions_definition SMBUS XferOptions definition
bogdanm 85:024bf7f99721 292 * @{
bogdanm 85:024bf7f99721 293 */
bogdanm 85:024bf7f99721 294
bogdanm 85:024bf7f99721 295 #define SMBUS_FIRST_FRAME ((uint32_t)(SMBUS_SOFTEND_MODE))
bogdanm 85:024bf7f99721 296 #define SMBUS_NEXT_FRAME ((uint32_t)(SMBUS_RELOAD_MODE | SMBUS_SOFTEND_MODE))
bogdanm 85:024bf7f99721 297 #define SMBUS_FIRST_AND_LAST_FRAME_NO_PEC SMBUS_AUTOEND_MODE
bogdanm 85:024bf7f99721 298 #define SMBUS_LAST_FRAME_NO_PEC SMBUS_AUTOEND_MODE
bogdanm 85:024bf7f99721 299 #define SMBUS_FIRST_AND_LAST_FRAME_WITH_PEC ((uint32_t)(SMBUS_AUTOEND_MODE | SMBUS_SENDPEC_MODE))
bogdanm 85:024bf7f99721 300 #define SMBUS_LAST_FRAME_WITH_PEC ((uint32_t)(SMBUS_AUTOEND_MODE | SMBUS_SENDPEC_MODE))
bogdanm 85:024bf7f99721 301 /**
bogdanm 85:024bf7f99721 302 * @}
bogdanm 85:024bf7f99721 303 */
bogdanm 85:024bf7f99721 304
bogdanm 92:4fc01daae5a5 305 /** @defgroup SMBUS_Interrupt_configuration_definition SMBUS Interrupt configuration definition
bogdanm 85:024bf7f99721 306 * @brief SMBUS Interrupt definition
bogdanm 85:024bf7f99721 307 * Elements values convention: 0xXXXXXXXX
bogdanm 85:024bf7f99721 308 * - XXXXXXXX : Interrupt control mask
bogdanm 85:024bf7f99721 309 * @{
bogdanm 85:024bf7f99721 310 */
bogdanm 85:024bf7f99721 311 #define SMBUS_IT_ERRI I2C_CR1_ERRIE
bogdanm 85:024bf7f99721 312 #define SMBUS_IT_TCI I2C_CR1_TCIE
bogdanm 85:024bf7f99721 313 #define SMBUS_IT_STOPI I2C_CR1_STOPIE
bogdanm 85:024bf7f99721 314 #define SMBUS_IT_NACKI I2C_CR1_NACKIE
bogdanm 85:024bf7f99721 315 #define SMBUS_IT_ADDRI I2C_CR1_ADDRIE
bogdanm 85:024bf7f99721 316 #define SMBUS_IT_RXI I2C_CR1_RXIE
bogdanm 85:024bf7f99721 317 #define SMBUS_IT_TXI I2C_CR1_TXIE
bogdanm 85:024bf7f99721 318 #define SMBUS_IT_TX (SMBUS_IT_ERRI | SMBUS_IT_TCI | SMBUS_IT_STOPI | SMBUS_IT_NACKI | SMBUS_IT_TXI)
bogdanm 85:024bf7f99721 319 #define SMBUS_IT_RX (SMBUS_IT_ERRI | SMBUS_IT_TCI | SMBUS_IT_NACKI | SMBUS_IT_RXI)
bogdanm 85:024bf7f99721 320 #define SMBUS_IT_ALERT (SMBUS_IT_ERRI)
bogdanm 85:024bf7f99721 321 #define SMBUS_IT_ADDR (SMBUS_IT_ADDRI | SMBUS_IT_STOPI | SMBUS_IT_NACKI)
bogdanm 85:024bf7f99721 322 /**
bogdanm 85:024bf7f99721 323 * @}
bogdanm 85:024bf7f99721 324 */
bogdanm 85:024bf7f99721 325
bogdanm 92:4fc01daae5a5 326 /** @defgroup SMBUS_Flag_definition SMBUS Flag definition
bogdanm 85:024bf7f99721 327 * @brief Flag definition
bogdanm 85:024bf7f99721 328 * Elements values convention: 0xXXXXYYYY
bogdanm 85:024bf7f99721 329 * - XXXXXXXX : Flag mask
bogdanm 85:024bf7f99721 330 * @{
bogdanm 85:024bf7f99721 331 */
bogdanm 85:024bf7f99721 332
bogdanm 85:024bf7f99721 333 #define SMBUS_FLAG_TXE I2C_ISR_TXE
bogdanm 85:024bf7f99721 334 #define SMBUS_FLAG_TXIS I2C_ISR_TXIS
bogdanm 85:024bf7f99721 335 #define SMBUS_FLAG_RXNE I2C_ISR_RXNE
bogdanm 85:024bf7f99721 336 #define SMBUS_FLAG_ADDR I2C_ISR_ADDR
bogdanm 85:024bf7f99721 337 #define SMBUS_FLAG_AF I2C_ISR_NACKF
bogdanm 85:024bf7f99721 338 #define SMBUS_FLAG_STOPF I2C_ISR_STOPF
bogdanm 85:024bf7f99721 339 #define SMBUS_FLAG_TC I2C_ISR_TC
bogdanm 85:024bf7f99721 340 #define SMBUS_FLAG_TCR I2C_ISR_TCR
bogdanm 85:024bf7f99721 341 #define SMBUS_FLAG_BERR I2C_ISR_BERR
bogdanm 85:024bf7f99721 342 #define SMBUS_FLAG_ARLO I2C_ISR_ARLO
bogdanm 85:024bf7f99721 343 #define SMBUS_FLAG_OVR I2C_ISR_OVR
bogdanm 85:024bf7f99721 344 #define SMBUS_FLAG_PECERR I2C_ISR_PECERR
bogdanm 85:024bf7f99721 345 #define SMBUS_FLAG_TIMEOUT I2C_ISR_TIMEOUT
bogdanm 85:024bf7f99721 346 #define SMBUS_FLAG_ALERT I2C_ISR_ALERT
bogdanm 85:024bf7f99721 347 #define SMBUS_FLAG_BUSY I2C_ISR_BUSY
bogdanm 85:024bf7f99721 348 #define SMBUS_FLAG_DIR I2C_ISR_DIR
bogdanm 85:024bf7f99721 349 /**
bogdanm 85:024bf7f99721 350 * @}
bogdanm 85:024bf7f99721 351 */
bogdanm 85:024bf7f99721 352
bogdanm 85:024bf7f99721 353 /**
bogdanm 85:024bf7f99721 354 * @}
bogdanm 85:024bf7f99721 355 */
bogdanm 85:024bf7f99721 356
bogdanm 85:024bf7f99721 357 /* Exported macros ------------------------------------------------------------*/
bogdanm 92:4fc01daae5a5 358 /** @defgroup SMBUS_Exported_Macros SMBUS Exported Macros
bogdanm 85:024bf7f99721 359 * @{
bogdanm 85:024bf7f99721 360 */
bogdanm 85:024bf7f99721 361
Kojto 108:34e6b704fe68 362 /** @brief Reset SMBUS handle state.
Kojto 108:34e6b704fe68 363 * @param __HANDLE__: specifies the SMBUS Handle.
bogdanm 85:024bf7f99721 364 * @retval None
bogdanm 85:024bf7f99721 365 */
bogdanm 85:024bf7f99721 366 #define __HAL_SMBUS_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_SMBUS_STATE_RESET)
bogdanm 85:024bf7f99721 367
Kojto 108:34e6b704fe68 368 /** @brief Enable the specified SMBUS interrupts.
bogdanm 85:024bf7f99721 369 * @param __HANDLE__: specifies the SMBUS Handle.
Kojto 108:34e6b704fe68 370 * @param __INTERRUPT__: specifies the interrupt source to enable.
bogdanm 85:024bf7f99721 371 * This parameter can be one of the following values:
bogdanm 85:024bf7f99721 372 * @arg SMBUS_IT_ERRI: Errors interrupt enable
bogdanm 85:024bf7f99721 373 * @arg SMBUS_IT_TCI: Transfer complete interrupt enable
bogdanm 85:024bf7f99721 374 * @arg SMBUS_IT_STOPI: STOP detection interrupt enable
bogdanm 85:024bf7f99721 375 * @arg SMBUS_IT_NACKI: NACK received interrupt enable
bogdanm 85:024bf7f99721 376 * @arg SMBUS_IT_ADDRI: Address match interrupt enable
bogdanm 85:024bf7f99721 377 * @arg SMBUS_IT_RXI: RX interrupt enable
bogdanm 85:024bf7f99721 378 * @arg SMBUS_IT_TXI: TX interrupt enable
bogdanm 85:024bf7f99721 379 *
bogdanm 85:024bf7f99721 380 * @retval None
bogdanm 85:024bf7f99721 381 */
bogdanm 85:024bf7f99721 382 #define __HAL_SMBUS_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR1 |= (__INTERRUPT__))
Kojto 108:34e6b704fe68 383
Kojto 108:34e6b704fe68 384 /** @brief Disable the specified SMBUS interrupts.
Kojto 108:34e6b704fe68 385 * @param __HANDLE__: specifies the SMBUS Handle.
Kojto 108:34e6b704fe68 386 * @param __INTERRUPT__: specifies the interrupt source to disable.
Kojto 108:34e6b704fe68 387 * This parameter can be one of the following values:
Kojto 108:34e6b704fe68 388 * @arg SMBUS_IT_ERRI: Errors interrupt enable
Kojto 108:34e6b704fe68 389 * @arg SMBUS_IT_TCI: Transfer complete interrupt enable
Kojto 108:34e6b704fe68 390 * @arg SMBUS_IT_STOPI: STOP detection interrupt enable
Kojto 108:34e6b704fe68 391 * @arg SMBUS_IT_NACKI: NACK received interrupt enable
Kojto 108:34e6b704fe68 392 * @arg SMBUS_IT_ADDRI: Address match interrupt enable
Kojto 108:34e6b704fe68 393 * @arg SMBUS_IT_RXI: RX interrupt enable
Kojto 108:34e6b704fe68 394 * @arg SMBUS_IT_TXI: TX interrupt enable
Kojto 108:34e6b704fe68 395 *
Kojto 108:34e6b704fe68 396 * @retval None
Kojto 108:34e6b704fe68 397 */
bogdanm 85:024bf7f99721 398 #define __HAL_SMBUS_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR1 &= (~(__INTERRUPT__)))
bogdanm 85:024bf7f99721 399
Kojto 108:34e6b704fe68 400 /** @brief Check whether the specified SMBUS interrupt source is enabled or not.
bogdanm 85:024bf7f99721 401 * @param __HANDLE__: specifies the SMBUS Handle.
bogdanm 85:024bf7f99721 402 * @param __INTERRUPT__: specifies the SMBUS interrupt source to check.
bogdanm 85:024bf7f99721 403 * This parameter can be one of the following values:
bogdanm 85:024bf7f99721 404 * @arg SMBUS_IT_ERRI: Errors interrupt enable
bogdanm 85:024bf7f99721 405 * @arg SMBUS_IT_TCI: Transfer complete interrupt enable
bogdanm 85:024bf7f99721 406 * @arg SMBUS_IT_STOPI: STOP detection interrupt enable
bogdanm 85:024bf7f99721 407 * @arg SMBUS_IT_NACKI: NACK received interrupt enable
bogdanm 85:024bf7f99721 408 * @arg SMBUS_IT_ADDRI: Address match interrupt enable
bogdanm 85:024bf7f99721 409 * @arg SMBUS_IT_RXI: RX interrupt enable
bogdanm 85:024bf7f99721 410 * @arg SMBUS_IT_TXI: TX interrupt enable
bogdanm 85:024bf7f99721 411 *
bogdanm 85:024bf7f99721 412 * @retval The new state of __IT__ (TRUE or FALSE).
bogdanm 85:024bf7f99721 413 */
bogdanm 85:024bf7f99721 414 #define __HAL_SMBUS_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CR1 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
bogdanm 85:024bf7f99721 415
Kojto 108:34e6b704fe68 416 /** @brief Check whether the specified SMBUS flag is set or not.
bogdanm 85:024bf7f99721 417 * @param __HANDLE__: specifies the SMBUS Handle.
bogdanm 85:024bf7f99721 418 * @param __FLAG__: specifies the flag to check.
bogdanm 85:024bf7f99721 419 * This parameter can be one of the following values:
bogdanm 85:024bf7f99721 420 * @arg SMBUS_FLAG_TXE: Transmit data register empty
bogdanm 85:024bf7f99721 421 * @arg SMBUS_FLAG_TXIS: Transmit interrupt status
bogdanm 85:024bf7f99721 422 * @arg SMBUS_FLAG_RXNE: Receive data register not empty
bogdanm 85:024bf7f99721 423 * @arg SMBUS_FLAG_ADDR: Address matched (slave mode)
bogdanm 85:024bf7f99721 424 * @arg SMBUS_FLAG_AF: NACK received flag
bogdanm 85:024bf7f99721 425 * @arg SMBUS_FLAG_STOPF: STOP detection flag
bogdanm 85:024bf7f99721 426 * @arg SMBUS_FLAG_TC: Transfer complete (master mode)
bogdanm 85:024bf7f99721 427 * @arg SMBUS_FLAG_TCR: Transfer complete reload
bogdanm 85:024bf7f99721 428 * @arg SMBUS_FLAG_BERR: Bus error
bogdanm 85:024bf7f99721 429 * @arg SMBUS_FLAG_ARLO: Arbitration lost
bogdanm 85:024bf7f99721 430 * @arg SMBUS_FLAG_OVR: Overrun/Underrun
bogdanm 85:024bf7f99721 431 * @arg SMBUS_FLAG_PECERR: PEC error in reception
bogdanm 85:024bf7f99721 432 * @arg SMBUS_FLAG_TIMEOUT: Timeout or Tlow detection flag
bogdanm 85:024bf7f99721 433 * @arg SMBUS_FLAG_ALERT: SMBus alert
bogdanm 85:024bf7f99721 434 * @arg SMBUS_FLAG_BUSY: Bus busy
bogdanm 85:024bf7f99721 435 * @arg SMBUS_FLAG_DIR: Transfer direction (slave mode)
bogdanm 85:024bf7f99721 436 *
bogdanm 85:024bf7f99721 437 * @retval The new state of __FLAG__ (TRUE or FALSE).
bogdanm 85:024bf7f99721 438 */
bogdanm 85:024bf7f99721 439 #define SMBUS_FLAG_MASK ((uint32_t)0x0001FFFF)
bogdanm 85:024bf7f99721 440 #define __HAL_SMBUS_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & ((__FLAG__) & SMBUS_FLAG_MASK)) == ((__FLAG__) & SMBUS_FLAG_MASK)))
bogdanm 85:024bf7f99721 441
Kojto 108:34e6b704fe68 442 /** @brief Clear the SMBUS pending flags which are cleared by writing 1 in a specific bit.
bogdanm 85:024bf7f99721 443 * @param __HANDLE__: specifies the SMBUS Handle.
bogdanm 85:024bf7f99721 444 * @param __FLAG__: specifies the flag to clear.
bogdanm 85:024bf7f99721 445 * This parameter can be any combination of the following values:
bogdanm 85:024bf7f99721 446 * @arg SMBUS_FLAG_ADDR: Address matched (slave mode)
bogdanm 85:024bf7f99721 447 * @arg SMBUS_FLAG_AF: NACK received flag
bogdanm 85:024bf7f99721 448 * @arg SMBUS_FLAG_STOPF: STOP detection flag
bogdanm 85:024bf7f99721 449 * @arg SMBUS_FLAG_BERR: Bus error
bogdanm 85:024bf7f99721 450 * @arg SMBUS_FLAG_ARLO: Arbitration lost
bogdanm 85:024bf7f99721 451 * @arg SMBUS_FLAG_OVR: Overrun/Underrun
bogdanm 85:024bf7f99721 452 * @arg SMBUS_FLAG_PECERR: PEC error in reception
bogdanm 85:024bf7f99721 453 * @arg SMBUS_FLAG_TIMEOUT: Timeout or Tlow detection flag
bogdanm 85:024bf7f99721 454 * @arg SMBUS_FLAG_ALERT: SMBus alert
bogdanm 85:024bf7f99721 455 *
bogdanm 85:024bf7f99721 456 * @retval None
bogdanm 85:024bf7f99721 457 */
bogdanm 92:4fc01daae5a5 458 #define __HAL_SMBUS_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ICR = (__FLAG__))
bogdanm 85:024bf7f99721 459
Kojto 108:34e6b704fe68 460 /** @brief Enable the specified SMBUS peripheral.
Kojto 108:34e6b704fe68 461 * @param __HANDLE__: specifies the SMBUS Handle.
Kojto 108:34e6b704fe68 462 * @retval None
Kojto 108:34e6b704fe68 463 */
Kojto 108:34e6b704fe68 464 #define __HAL_SMBUS_ENABLE(__HANDLE__) (SET_BIT((__HANDLE__)->Instance->CR1, I2C_CR1_PE))
bogdanm 85:024bf7f99721 465
Kojto 108:34e6b704fe68 466 /** @brief Disable the specified SMBUS peripheral.
Kojto 108:34e6b704fe68 467 * @param __HANDLE__: specifies the SMBUS Handle.
Kojto 108:34e6b704fe68 468 * @retval None
Kojto 108:34e6b704fe68 469 */
Kojto 108:34e6b704fe68 470 #define __HAL_SMBUS_DISABLE(__HANDLE__) (CLEAR_BIT((__HANDLE__)->Instance->CR1, I2C_CR1_PE))
Kojto 108:34e6b704fe68 471
Kojto 108:34e6b704fe68 472 /** @brief Generate a Non-Acknowledge SMBUS peripheral in Slave mode.
Kojto 108:34e6b704fe68 473 * @param __HANDLE__: specifies the SMBUS Handle.
Kojto 108:34e6b704fe68 474 * @retval None
Kojto 108:34e6b704fe68 475 */
Kojto 108:34e6b704fe68 476 #define __HAL_SMBUS_GENERATE_NACK(__HANDLE__) (SET_BIT((__HANDLE__)->Instance->CR2, I2C_CR2_NACK))
Kojto 108:34e6b704fe68 477
Kojto 108:34e6b704fe68 478 /**
Kojto 108:34e6b704fe68 479 * @}
Kojto 108:34e6b704fe68 480 */
Kojto 108:34e6b704fe68 481
Kojto 108:34e6b704fe68 482
Kojto 108:34e6b704fe68 483 /* Private constants ---------------------------------------------------------*/
Kojto 108:34e6b704fe68 484
Kojto 108:34e6b704fe68 485 /* Private macros ------------------------------------------------------------*/
Kojto 108:34e6b704fe68 486 /** @defgroup SMBUS_Private_Macro SMBUS Private Macros
Kojto 108:34e6b704fe68 487 * @{
Kojto 108:34e6b704fe68 488 */
Kojto 108:34e6b704fe68 489
Kojto 108:34e6b704fe68 490 #define IS_SMBUS_ANALOG_FILTER(FILTER) (((FILTER) == SMBUS_ANALOGFILTER_ENABLE) || \
Kojto 108:34e6b704fe68 491 ((FILTER) == SMBUS_ANALOGFILTER_DISABLE))
Kojto 108:34e6b704fe68 492
Kojto 108:34e6b704fe68 493 #define IS_SMBUS_ADDRESSING_MODE(MODE) (((MODE) == SMBUS_ADDRESSINGMODE_7BIT) || \
Kojto 108:34e6b704fe68 494 ((MODE) == SMBUS_ADDRESSINGMODE_10BIT))
Kojto 108:34e6b704fe68 495
Kojto 108:34e6b704fe68 496 #define IS_SMBUS_DUAL_ADDRESS(ADDRESS) (((ADDRESS) == SMBUS_DUALADDRESS_DISABLE) || \
Kojto 108:34e6b704fe68 497 ((ADDRESS) == SMBUS_DUALADDRESS_ENABLE))
bogdanm 85:024bf7f99721 498
Kojto 108:34e6b704fe68 499 #define IS_SMBUS_OWN_ADDRESS2_MASK(MASK) (((MASK) == SMBUS_OA2_NOMASK) || \
Kojto 108:34e6b704fe68 500 ((MASK) == SMBUS_OA2_MASK01) || \
Kojto 108:34e6b704fe68 501 ((MASK) == SMBUS_OA2_MASK02) || \
Kojto 108:34e6b704fe68 502 ((MASK) == SMBUS_OA2_MASK03) || \
Kojto 108:34e6b704fe68 503 ((MASK) == SMBUS_OA2_MASK04) || \
Kojto 108:34e6b704fe68 504 ((MASK) == SMBUS_OA2_MASK05) || \
Kojto 108:34e6b704fe68 505 ((MASK) == SMBUS_OA2_MASK06) || \
Kojto 108:34e6b704fe68 506 ((MASK) == SMBUS_OA2_MASK07))
Kojto 108:34e6b704fe68 507
Kojto 108:34e6b704fe68 508 #define IS_SMBUS_GENERAL_CALL(CALL) (((CALL) == SMBUS_GENERALCALL_DISABLE) || \
Kojto 108:34e6b704fe68 509 ((CALL) == SMBUS_GENERALCALL_ENABLE))
Kojto 108:34e6b704fe68 510
Kojto 108:34e6b704fe68 511 #define IS_SMBUS_NO_STRETCH(STRETCH) (((STRETCH) == SMBUS_NOSTRETCH_DISABLE) || \
Kojto 108:34e6b704fe68 512 ((STRETCH) == SMBUS_NOSTRETCH_ENABLE))
Kojto 108:34e6b704fe68 513
Kojto 108:34e6b704fe68 514 #define IS_SMBUS_PEC(PEC) (((PEC) == SMBUS_PEC_DISABLE) || \
Kojto 108:34e6b704fe68 515 ((PEC) == SMBUS_PEC_ENABLE))
Kojto 108:34e6b704fe68 516
Kojto 108:34e6b704fe68 517 #define IS_SMBUS_PERIPHERAL_MODE(MODE) (((MODE) == SMBUS_PERIPHERAL_MODE_SMBUS_HOST) || \
Kojto 108:34e6b704fe68 518 ((MODE) == SMBUS_PERIPHERAL_MODE_SMBUS_SLAVE) || \
Kojto 108:34e6b704fe68 519 ((MODE) == SMBUS_PERIPHERAL_MODE_SMBUS_SLAVE_ARP))
bogdanm 85:024bf7f99721 520
Kojto 108:34e6b704fe68 521 #define IS_SMBUS_TRANSFER_MODE(MODE) (((MODE) == SMBUS_RELOAD_MODE) || \
Kojto 108:34e6b704fe68 522 ((MODE) == SMBUS_AUTOEND_MODE) || \
Kojto 108:34e6b704fe68 523 ((MODE) == SMBUS_SOFTEND_MODE) || \
Kojto 108:34e6b704fe68 524 ((MODE) == (SMBUS_RELOAD_MODE | SMBUS_SENDPEC_MODE)) || \
Kojto 108:34e6b704fe68 525 ((MODE) == (SMBUS_AUTOEND_MODE | SMBUS_SENDPEC_MODE)) || \
Kojto 108:34e6b704fe68 526 ((MODE) == (SMBUS_AUTOEND_MODE | SMBUS_RELOAD_MODE)) || \
Kojto 108:34e6b704fe68 527 ((MODE) == (SMBUS_AUTOEND_MODE | SMBUS_SENDPEC_MODE | SMBUS_RELOAD_MODE )))
Kojto 108:34e6b704fe68 528
Kojto 108:34e6b704fe68 529
Kojto 108:34e6b704fe68 530 #define IS_SMBUS_TRANSFER_REQUEST(REQUEST) (((REQUEST) == SMBUS_GENERATE_STOP) || \
Kojto 108:34e6b704fe68 531 ((REQUEST) == SMBUS_GENERATE_START_READ) || \
Kojto 108:34e6b704fe68 532 ((REQUEST) == SMBUS_GENERATE_START_WRITE) || \
Kojto 108:34e6b704fe68 533 ((REQUEST) == SMBUS_NO_STARTSTOP))
Kojto 108:34e6b704fe68 534
Kojto 108:34e6b704fe68 535
Kojto 108:34e6b704fe68 536 #define IS_SMBUS_TRANSFER_OPTIONS_REQUEST(REQUEST) (((REQUEST) == SMBUS_FIRST_FRAME) || \
Kojto 108:34e6b704fe68 537 ((REQUEST) == SMBUS_NEXT_FRAME) || \
Kojto 108:34e6b704fe68 538 ((REQUEST) == SMBUS_FIRST_AND_LAST_FRAME_NO_PEC) || \
Kojto 108:34e6b704fe68 539 ((REQUEST) == SMBUS_LAST_FRAME_NO_PEC) || \
Kojto 108:34e6b704fe68 540 ((REQUEST) == SMBUS_FIRST_AND_LAST_FRAME_WITH_PEC) || \
Kojto 108:34e6b704fe68 541 ((REQUEST) == SMBUS_LAST_FRAME_WITH_PEC))
Kojto 108:34e6b704fe68 542
Kojto 108:34e6b704fe68 543 #define SMBUS_RESET_CR1(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= (uint32_t)~((uint32_t)(I2C_CR1_SMBHEN | I2C_CR1_SMBDEN | I2C_CR1_PECEN)))
Kojto 108:34e6b704fe68 544 #define 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)))
Kojto 108:34e6b704fe68 545
Kojto 108:34e6b704fe68 546 #define 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 547 (uint32_t)((((uint32_t)(__ADDRESS__) & (I2C_CR2_SADD)) | (I2C_CR2_ADD10) | (I2C_CR2_START)) & (~I2C_CR2_RD_WRN)))
bogdanm 85:024bf7f99721 548
Kojto 108:34e6b704fe68 549 #define SMBUS_GET_ADDR_MATCH(__HANDLE__) (((__HANDLE__)->Instance->ISR & I2C_ISR_ADDCODE) >> 17)
Kojto 108:34e6b704fe68 550 #define SMBUS_GET_DIR(__HANDLE__) (((__HANDLE__)->Instance->ISR & I2C_ISR_DIR) >> 16)
Kojto 108:34e6b704fe68 551 #define SMBUS_GET_STOP_MODE(__HANDLE__) ((__HANDLE__)->Instance->CR2 & I2C_CR2_AUTOEND)
Kojto 108:34e6b704fe68 552 #define SMBUS_GET_PEC_MODE(__HANDLE__) ((__HANDLE__)->Instance->CR2 & I2C_CR2_PECBYTE)
Kojto 108:34e6b704fe68 553 #define SMBUS_GET_ALERT_ENABLED(__HANDLE__) ((__HANDLE__)->Instance->CR1 & I2C_CR1_ALERTEN)
Kojto 108:34e6b704fe68 554
Kojto 108:34e6b704fe68 555 #define SMBUS_GET_ISR_REG(__HANDLE__) ((__HANDLE__)->Instance->ISR)
Kojto 108:34e6b704fe68 556 #define SMBUS_CHECK_FLAG(__ISR__, __FLAG__) ((((__ISR__) & ((__FLAG__) & SMBUS_FLAG_MASK)) == ((__FLAG__) & SMBUS_FLAG_MASK)))
bogdanm 85:024bf7f99721 557
bogdanm 85:024bf7f99721 558 #define IS_SMBUS_OWN_ADDRESS1(ADDRESS1) ((ADDRESS1) <= (uint32_t)0x000003FF)
bogdanm 85:024bf7f99721 559 #define IS_SMBUS_OWN_ADDRESS2(ADDRESS2) ((ADDRESS2) <= (uint16_t)0x00FF)
Kojto 108:34e6b704fe68 560
Kojto 108:34e6b704fe68 561 /**
Kojto 108:34e6b704fe68 562 * @}
Kojto 108:34e6b704fe68 563 */
Kojto 108:34e6b704fe68 564
Kojto 108:34e6b704fe68 565 /* Private Functions ---------------------------------------------------------*/
Kojto 108:34e6b704fe68 566 /** @defgroup SMBUS_Private_Functions SMBUS Private Functions
Kojto 108:34e6b704fe68 567 * @{
Kojto 108:34e6b704fe68 568 */
Kojto 108:34e6b704fe68 569 /* Private functions are defined in stm32l4xx_hal_smbus.c file */
bogdanm 85:024bf7f99721 570 /**
bogdanm 85:024bf7f99721 571 * @}
bogdanm 85:024bf7f99721 572 */
bogdanm 85:024bf7f99721 573
bogdanm 85:024bf7f99721 574 /* Exported functions --------------------------------------------------------*/
bogdanm 92:4fc01daae5a5 575 /** @addtogroup SMBUS_Exported_Functions SMBUS Exported Functions
bogdanm 92:4fc01daae5a5 576 * @{
bogdanm 92:4fc01daae5a5 577 */
bogdanm 92:4fc01daae5a5 578
bogdanm 92:4fc01daae5a5 579 /** @addtogroup SMBUS_Exported_Functions_Group1 Initialization and de-initialization functions
bogdanm 92:4fc01daae5a5 580 * @{
bogdanm 92:4fc01daae5a5 581 */
bogdanm 92:4fc01daae5a5 582
bogdanm 85:024bf7f99721 583 /* Initialization and de-initialization functions **********************************/
bogdanm 85:024bf7f99721 584 HAL_StatusTypeDef HAL_SMBUS_Init(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 585 HAL_StatusTypeDef HAL_SMBUS_DeInit (SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 586 void HAL_SMBUS_MspInit(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 587 void HAL_SMBUS_MspDeInit(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 588
bogdanm 92:4fc01daae5a5 589 /**
bogdanm 92:4fc01daae5a5 590 * @}
bogdanm 92:4fc01daae5a5 591 */
bogdanm 92:4fc01daae5a5 592
bogdanm 92:4fc01daae5a5 593 /** @addtogroup SMBUS_Exported_Functions_Group2 Input and Output operation functions
bogdanm 92:4fc01daae5a5 594 * @{
bogdanm 92:4fc01daae5a5 595 */
bogdanm 92:4fc01daae5a5 596
bogdanm 85:024bf7f99721 597 /* IO operation functions *****************************************************/
Kojto 108:34e6b704fe68 598 /** @addtogroup Blocking_mode_Polling Blocking mode Polling
Kojto 108:34e6b704fe68 599 * @{
Kojto 108:34e6b704fe68 600 */
bogdanm 85:024bf7f99721 601 /******* Blocking mode: Polling */
bogdanm 85:024bf7f99721 602 HAL_StatusTypeDef HAL_SMBUS_IsDeviceReady(SMBUS_HandleTypeDef *hsmbus, uint16_t DevAddress, uint32_t Trials, uint32_t Timeout);
Kojto 108:34e6b704fe68 603 /**
Kojto 108:34e6b704fe68 604 * @}
Kojto 108:34e6b704fe68 605 */
bogdanm 85:024bf7f99721 606
Kojto 108:34e6b704fe68 607 /** @addtogroup Non-Blocking_mode_Interrupt Non-Blocking mode Interrupt
Kojto 108:34e6b704fe68 608 * @{
Kojto 108:34e6b704fe68 609 */
bogdanm 92:4fc01daae5a5 610 /******* Non-Blocking mode: Interrupt */
bogdanm 85:024bf7f99721 611 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 612 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 613 HAL_StatusTypeDef HAL_SMBUS_Master_Abort_IT(SMBUS_HandleTypeDef *hsmbus, uint16_t DevAddress);
bogdanm 85:024bf7f99721 614 HAL_StatusTypeDef HAL_SMBUS_Slave_Transmit_IT(SMBUS_HandleTypeDef *hsmbus, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
bogdanm 85:024bf7f99721 615 HAL_StatusTypeDef HAL_SMBUS_Slave_Receive_IT(SMBUS_HandleTypeDef *hsmbus, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
bogdanm 85:024bf7f99721 616
bogdanm 92:4fc01daae5a5 617 HAL_StatusTypeDef HAL_SMBUS_EnableAlert_IT(SMBUS_HandleTypeDef *hsmbus);
bogdanm 92:4fc01daae5a5 618 HAL_StatusTypeDef HAL_SMBUS_DisableAlert_IT(SMBUS_HandleTypeDef *hsmbus);
Kojto 108:34e6b704fe68 619 HAL_StatusTypeDef HAL_SMBUS_EnableListen_IT(SMBUS_HandleTypeDef *hsmbus);
bogdanm 92:4fc01daae5a5 620 HAL_StatusTypeDef HAL_SMBUS_DisableListen_IT(SMBUS_HandleTypeDef *hsmbus);
Kojto 108:34e6b704fe68 621 /**
Kojto 108:34e6b704fe68 622 * @}
Kojto 108:34e6b704fe68 623 */
bogdanm 92:4fc01daae5a5 624
Kojto 108:34e6b704fe68 625 /** @addtogroup SMBUS_IRQ_Handler_and_Callbacks IRQ Handler and Callbacks
Kojto 108:34e6b704fe68 626 * @{
Kojto 108:34e6b704fe68 627 */
bogdanm 92:4fc01daae5a5 628 /******* SMBUS IRQHandler and Callbacks used in non blocking modes (Interrupt) */
bogdanm 85:024bf7f99721 629 void HAL_SMBUS_EV_IRQHandler(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 630 void HAL_SMBUS_ER_IRQHandler(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 631 void HAL_SMBUS_MasterTxCpltCallback(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 632 void HAL_SMBUS_MasterRxCpltCallback(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 633 void HAL_SMBUS_SlaveTxCpltCallback(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 634 void HAL_SMBUS_SlaveRxCpltCallback(SMBUS_HandleTypeDef *hsmbus);
Kojto 108:34e6b704fe68 635 void HAL_SMBUS_AddrCallback(SMBUS_HandleTypeDef *hsmbus, uint8_t TransferDirection, uint16_t AddrMatchCode);
Kojto 108:34e6b704fe68 636 void HAL_SMBUS_ListenCpltCallback(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 637 void HAL_SMBUS_ErrorCallback(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 638
bogdanm 92:4fc01daae5a5 639 /**
bogdanm 92:4fc01daae5a5 640 * @}
bogdanm 92:4fc01daae5a5 641 */
bogdanm 92:4fc01daae5a5 642
bogdanm 92:4fc01daae5a5 643 /** @addtogroup SMBUS_Exported_Functions_Group3 Peripheral State and Errors functions
bogdanm 92:4fc01daae5a5 644 * @{
bogdanm 92:4fc01daae5a5 645 */
bogdanm 92:4fc01daae5a5 646
bogdanm 85:024bf7f99721 647 /* Peripheral State and Errors functions **************************************************/
Kojto 93:e188a91d3eaa 648 uint32_t HAL_SMBUS_GetState(SMBUS_HandleTypeDef *hsmbus);
Kojto 93:e188a91d3eaa 649 uint32_t HAL_SMBUS_GetError(SMBUS_HandleTypeDef *hsmbus);
bogdanm 85:024bf7f99721 650
bogdanm 85:024bf7f99721 651 /**
bogdanm 85:024bf7f99721 652 * @}
bogdanm 92:4fc01daae5a5 653 */
bogdanm 92:4fc01daae5a5 654
bogdanm 92:4fc01daae5a5 655 /**
bogdanm 92:4fc01daae5a5 656 * @}
bogdanm 85:024bf7f99721 657 */
bogdanm 85:024bf7f99721 658
Kojto 108:34e6b704fe68 659
Kojto 108:34e6b704fe68 660
Kojto 108:34e6b704fe68 661 /**
Kojto 108:34e6b704fe68 662 * @}
Kojto 108:34e6b704fe68 663 */
Kojto 108:34e6b704fe68 664
bogdanm 85:024bf7f99721 665 /**
bogdanm 85:024bf7f99721 666 * @}
bogdanm 85:024bf7f99721 667 */
bogdanm 92:4fc01daae5a5 668
bogdanm 92:4fc01daae5a5 669 /**
bogdanm 92:4fc01daae5a5 670 * @}
bogdanm 92:4fc01daae5a5 671 */
bogdanm 85:024bf7f99721 672 #ifdef __cplusplus
bogdanm 85:024bf7f99721 673 }
bogdanm 85:024bf7f99721 674 #endif
bogdanm 85:024bf7f99721 675
bogdanm 85:024bf7f99721 676
bogdanm 85:024bf7f99721 677 #endif /* __STM32F0xx_HAL_SMBUS_H */
bogdanm 85:024bf7f99721 678
bogdanm 85:024bf7f99721 679 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
bogdanm 92:4fc01daae5a5 680