mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Thu Jul 07 14:34:11 2016 +0100
Revision:
122:f9eeca106725
Parent:
90:cb3d968589d8
Child:
123:b0220dba8be7
Release 122 of the mbed library

Changes:
- new targets - Nucleo L432KC, Beetle, Nucleo F446ZE, Nucleo L011K4
- Thread safety addition - mbed API should contain a statement about thread safety
- critical section API addition
- CAS API (core_util_atomic_incr/decr)
- DEVICE_ are generated from targets.json file, device.h deprecated
- Callback replaces FunctionPointer to provide std like interface
- mbed HAL API docs improvements
- toolchain - prexif attributes with MBED_
- add new attributes - packed, weak, forcedinline, align
- target.json - contains targets definitions
- ST - L1XX - Cube update to 1.5
- SPI clock selection fix (clock from APB domain)
- F7 - Cube update v1.4.0
- L0 - baudrate init fix
- L1 - Cube update v1.5
- F3 - baudrate init fix, 3 targets CAN support
- F4 - Cube update v1.12.0, 3 targets CAN support
- L4XX - Cube update v1.5.1
- F0 - update Cube to v1.5.0
- L4 - 2 targets (L476RG/VG) CAN support
- NXP - pwm clock fix for KSDK2 MCU
- LPC2368 - remove ARM toolchain support - due to regression
- KSDK2 - fix SPI , I2C address and repeat start
- Silabs - some fixes backported from mbed 3
- Renesas - RZ_A1H - SystemCoreClockUpdate addition

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 90:cb3d968589d8 1 /**
Kojto 90:cb3d968589d8 2 ******************************************************************************
Kojto 90:cb3d968589d8 3 * @file stm32f3xx_hal_cec.h
Kojto 90:cb3d968589d8 4 * @author MCD Application Team
Kojto 122:f9eeca106725 5 * @version V1.2.1
Kojto 122:f9eeca106725 6 * @date 29-April-2015
Kojto 90:cb3d968589d8 7 * @brief Header file of CEC HAL module.
Kojto 90:cb3d968589d8 8 ******************************************************************************
Kojto 90:cb3d968589d8 9 * @attention
Kojto 90:cb3d968589d8 10 *
Kojto 122:f9eeca106725 11 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
Kojto 90:cb3d968589d8 12 *
Kojto 90:cb3d968589d8 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 90:cb3d968589d8 14 * are permitted provided that the following conditions are met:
Kojto 90:cb3d968589d8 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 90:cb3d968589d8 16 * this list of conditions and the following disclaimer.
Kojto 90:cb3d968589d8 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 90:cb3d968589d8 18 * this list of conditions and the following disclaimer in the documentation
Kojto 90:cb3d968589d8 19 * and/or other materials provided with the distribution.
Kojto 90:cb3d968589d8 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 90:cb3d968589d8 21 * may be used to endorse or promote products derived from this software
Kojto 90:cb3d968589d8 22 * without specific prior written permission.
Kojto 90:cb3d968589d8 23 *
Kojto 90:cb3d968589d8 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 90:cb3d968589d8 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 90:cb3d968589d8 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 90:cb3d968589d8 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 90:cb3d968589d8 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 90:cb3d968589d8 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 90:cb3d968589d8 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 90:cb3d968589d8 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 90:cb3d968589d8 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 90:cb3d968589d8 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 90:cb3d968589d8 34 *
Kojto 90:cb3d968589d8 35 ******************************************************************************
Kojto 90:cb3d968589d8 36 */
Kojto 90:cb3d968589d8 37
Kojto 90:cb3d968589d8 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 90:cb3d968589d8 39 #ifndef __STM32F3xx_HAL_CEC_H
Kojto 90:cb3d968589d8 40 #define __STM32F3xx_HAL_CEC_H
Kojto 90:cb3d968589d8 41
Kojto 90:cb3d968589d8 42 #ifdef __cplusplus
Kojto 90:cb3d968589d8 43 extern "C" {
Kojto 90:cb3d968589d8 44 #endif
Kojto 90:cb3d968589d8 45
Kojto 90:cb3d968589d8 46 #if defined(STM32F373xC) || defined(STM32F378xx)
Kojto 90:cb3d968589d8 47 /* Includes ------------------------------------------------------------------*/
Kojto 90:cb3d968589d8 48 #include "stm32f3xx_hal_def.h"
Kojto 90:cb3d968589d8 49
Kojto 90:cb3d968589d8 50 /** @addtogroup STM32F3xx_HAL_Driver
Kojto 90:cb3d968589d8 51 * @{
Kojto 90:cb3d968589d8 52 */
Kojto 90:cb3d968589d8 53
Kojto 122:f9eeca106725 54 /** @addtogroup CEC CEC
Kojto 90:cb3d968589d8 55 * @{
Kojto 90:cb3d968589d8 56 */
Kojto 90:cb3d968589d8 57
Kojto 90:cb3d968589d8 58 /* Exported types ------------------------------------------------------------*/
Kojto 90:cb3d968589d8 59 /** @defgroup CEC_Exported_Types CEC Exported Types
Kojto 90:cb3d968589d8 60 * @{
Kojto 90:cb3d968589d8 61 */
Kojto 122:f9eeca106725 62
Kojto 90:cb3d968589d8 63 /**
Kojto 90:cb3d968589d8 64 * @brief CEC Init Structure definition
Kojto 90:cb3d968589d8 65 */
Kojto 90:cb3d968589d8 66 typedef struct
Kojto 90:cb3d968589d8 67 {
Kojto 90:cb3d968589d8 68 uint32_t SignalFreeTime; /*!< Set SFT field, specifies the Signal Free Time.
Kojto 90:cb3d968589d8 69 It can be one of @ref CEC_Signal_Free_Time
Kojto 90:cb3d968589d8 70 and belongs to the set {0,...,7} where
Kojto 90:cb3d968589d8 71 0x0 is the default configuration
Kojto 90:cb3d968589d8 72 else means 0.5 + (SignalFreeTime - 1) nominal data bit periods */
Kojto 90:cb3d968589d8 73
Kojto 90:cb3d968589d8 74 uint32_t Tolerance; /*!< Set RXTOL bit, specifies the tolerance accepted on the received waveforms,
Kojto 122:f9eeca106725 75 it can be a value of @ref CEC_Tolerance :
Kojto 122:f9eeca106725 76 @arg CEC_STANDARD_TOLERANCE
Kojto 122:f9eeca106725 77 @arg CEC_EXTENDED_TOLERANCE */
Kojto 90:cb3d968589d8 78
Kojto 90:cb3d968589d8 79 uint32_t BRERxStop; /*!< Set BRESTP bit @ref CEC_BRERxStop : specifies whether or not a Bit Rising Error stops the reception.
Kojto 122:f9eeca106725 80 @arg CEC_NO_RX_STOP_ON_BRE: reception is not stopped.
Kojto 122:f9eeca106725 81 @arg CEC_RX_STOP_ON_BRE: reception is stopped. */
Kojto 90:cb3d968589d8 82
Kojto 90:cb3d968589d8 83 uint32_t BREErrorBitGen; /*!< Set BREGEN bit @ref CEC_BREErrorBitGen : specifies whether or not an Error-Bit is generated on the
Kojto 90:cb3d968589d8 84 CEC line upon Bit Rising Error detection.
Kojto 122:f9eeca106725 85 @arg CEC_BRE_ERRORBIT_NO_GENERATION: no error-bit generation.
Kojto 122:f9eeca106725 86 @arg CEC_BRE_ERRORBIT_GENERATION: error-bit generation if BRESTP is set. */
Kojto 90:cb3d968589d8 87
Kojto 90:cb3d968589d8 88 uint32_t LBPEErrorBitGen; /*!< Set LBPEGEN bit @ref CEC_LBPEErrorBitGen : specifies whether or not an Error-Bit is generated on the
Kojto 122:f9eeca106725 89 @arg CEC line upon Long Bit Period Error detection.
Kojto 122:f9eeca106725 90 @arg CEC_LBPE_ERRORBIT_NO_GENERATION: no error-bit generation.
Kojto 122:f9eeca106725 91 @arg CEC_LBPE_ERRORBIT_GENERATION: error-bit generation. */
Kojto 90:cb3d968589d8 92
Kojto 90:cb3d968589d8 93 uint32_t BroadcastMsgNoErrorBitGen; /*!< Set BRDNOGEN bit @ref CEC_BroadCastMsgErrorBitGen : allows to avoid an Error-Bit generation on the CEC line
Kojto 90:cb3d968589d8 94 upon an error detected on a broadcast message.
Kojto 90:cb3d968589d8 95
Kojto 90:cb3d968589d8 96 It supersedes BREGEN and LBPEGEN bits for a broadcast message error handling. It can take two values:
Kojto 90:cb3d968589d8 97
Kojto 122:f9eeca106725 98 @arg 1) CEC_BROADCASTERROR_ERRORBIT_GENERATION.
Kojto 122:f9eeca106725 99 @arg __ a) BRE detection: error-bit generation on the CEC line if BRESTP=CEC_RX_STOP_ON_BRE
Kojto 90:cb3d968589d8 100 and BREGEN=CEC_BRE_ERRORBIT_NO_GENERATION.
Kojto 122:f9eeca106725 101 @arg __ b) LBPE detection: error-bit generation on the CEC line
Kojto 90:cb3d968589d8 102 if LBPGEN=CEC_LBPE_ERRORBIT_NO_GENERATION.
Kojto 90:cb3d968589d8 103
Kojto 122:f9eeca106725 104 @arg 2) CEC_BROADCASTERROR_NO_ERRORBIT_GENERATION.
Kojto 90:cb3d968589d8 105 no error-bit generation in case neither a) nor b) are satisfied. Additionally,
Kojto 90:cb3d968589d8 106 there is no error-bit generation in case of Short Bit Period Error detection in
Kojto 90:cb3d968589d8 107 a broadcast message while LSTN bit is set. */
Kojto 90:cb3d968589d8 108
Kojto 90:cb3d968589d8 109 uint32_t SignalFreeTimeOption; /*!< Set SFTOP bit @ref CEC_SFT_Option : specifies when SFT timer starts.
Kojto 122:f9eeca106725 110 @arg CEC_SFT_START_ON_TXSOM SFT: timer starts when TXSOM is set by software.
Kojto 122:f9eeca106725 111 @arg CEC_SFT_START_ON_TX_RX_END: SFT timer starts automatically at the end of message transmission/reception. */
Kojto 90:cb3d968589d8 112
Kojto 90:cb3d968589d8 113 uint32_t OwnAddress; /*!< Set OAR field, specifies CEC device address within a 15-bit long field */
Kojto 90:cb3d968589d8 114
Kojto 90:cb3d968589d8 115 uint32_t ListenMode; /*!< Set LSTN bit @ref CEC_Listening_Mode : specifies device listening mode. It can take two values:
Kojto 90:cb3d968589d8 116
Kojto 122:f9eeca106725 117 @arg CEC_REDUCED_LISTENING_MODE: CEC peripheral receives only message addressed to its
Kojto 90:cb3d968589d8 118 own address (OAR). Messages addressed to different destination are ignored.
Kojto 90:cb3d968589d8 119 Broadcast messages are always received.
Kojto 90:cb3d968589d8 120
Kojto 122:f9eeca106725 121 @arg CEC_FULL_LISTENING_MODE: CEC peripheral receives messages addressed to its own
Kojto 90:cb3d968589d8 122 address (OAR) with positive acknowledge. Messages addressed to different destination
Kojto 90:cb3d968589d8 123 are received, but without interfering with the CEC bus: no acknowledge sent. */
Kojto 90:cb3d968589d8 124
Kojto 90:cb3d968589d8 125 uint8_t InitiatorAddress; /* Initiator address (source logical address, sent in each header) */
Kojto 90:cb3d968589d8 126
Kojto 90:cb3d968589d8 127 }CEC_InitTypeDef;
Kojto 90:cb3d968589d8 128
Kojto 90:cb3d968589d8 129 /**
Kojto 90:cb3d968589d8 130 * @brief HAL CEC State structures definition
Kojto 90:cb3d968589d8 131 */
Kojto 90:cb3d968589d8 132 typedef enum
Kojto 90:cb3d968589d8 133 {
Kojto 90:cb3d968589d8 134 HAL_CEC_STATE_RESET = 0x00, /*!< Peripheral Reset state */
Kojto 90:cb3d968589d8 135 HAL_CEC_STATE_READY = 0x01, /*!< Peripheral Initialized and ready for use */
Kojto 90:cb3d968589d8 136 HAL_CEC_STATE_BUSY = 0x02, /*!< an internal process is ongoing */
Kojto 90:cb3d968589d8 137 HAL_CEC_STATE_BUSY_TX = 0x03, /*!< Data Transmission process is ongoing */
Kojto 90:cb3d968589d8 138 HAL_CEC_STATE_BUSY_RX = 0x04, /*!< Data Reception process is ongoing */
Kojto 90:cb3d968589d8 139 HAL_CEC_STATE_STANDBY_RX = 0x05, /*!< IP ready to receive, doesn't prevent IP to transmit */
Kojto 90:cb3d968589d8 140 HAL_CEC_STATE_TIMEOUT = 0x06, /*!< Timeout state */
Kojto 90:cb3d968589d8 141 HAL_CEC_STATE_ERROR = 0x07 /*!< State Error */
Kojto 90:cb3d968589d8 142 }HAL_CEC_StateTypeDef;
Kojto 90:cb3d968589d8 143
Kojto 90:cb3d968589d8 144 /**
Kojto 90:cb3d968589d8 145 * @brief CEC handle Structure definition
Kojto 90:cb3d968589d8 146 */
Kojto 90:cb3d968589d8 147 typedef struct
Kojto 90:cb3d968589d8 148 {
Kojto 122:f9eeca106725 149 CEC_TypeDef *Instance; /*!< CEC registers base address */
Kojto 90:cb3d968589d8 150
Kojto 122:f9eeca106725 151 CEC_InitTypeDef Init; /*!< CEC communication parameters */
Kojto 90:cb3d968589d8 152
Kojto 122:f9eeca106725 153 uint8_t *pTxBuffPtr; /*!< Pointer to CEC Tx transfer Buffer */
Kojto 90:cb3d968589d8 154
Kojto 122:f9eeca106725 155 uint16_t TxXferCount; /*!< CEC Tx Transfer Counter */
Kojto 90:cb3d968589d8 156
Kojto 122:f9eeca106725 157 uint8_t *pRxBuffPtr; /*!< Pointer to CEC Rx transfer Buffer */
Kojto 90:cb3d968589d8 158
Kojto 122:f9eeca106725 159 uint16_t RxXferSize; /*!< CEC Rx Transfer size, 0: header received only */
Kojto 90:cb3d968589d8 160
Kojto 122:f9eeca106725 161 uint32_t ErrorCode; /*!< For errors handling purposes, copy of ISR register
Kojto 90:cb3d968589d8 162 in case error is reported */
Kojto 90:cb3d968589d8 163
Kojto 122:f9eeca106725 164 HAL_LockTypeDef Lock; /*!< Locking object */
Kojto 90:cb3d968589d8 165
Kojto 122:f9eeca106725 166 HAL_CEC_StateTypeDef State; /*!< CEC communication state */
Kojto 90:cb3d968589d8 167
Kojto 90:cb3d968589d8 168 }CEC_HandleTypeDef;
Kojto 90:cb3d968589d8 169 /**
Kojto 90:cb3d968589d8 170 * @}
Kojto 90:cb3d968589d8 171 */
Kojto 90:cb3d968589d8 172
Kojto 90:cb3d968589d8 173 /* Exported constants --------------------------------------------------------*/
Kojto 90:cb3d968589d8 174 /** @defgroup CEC_Exported_Constants CEC Exported Constants
Kojto 90:cb3d968589d8 175 * @{
Kojto 90:cb3d968589d8 176 */
Kojto 90:cb3d968589d8 177
Kojto 122:f9eeca106725 178 /** @defgroup CEC_Error_Code CEC Error Code
Kojto 90:cb3d968589d8 179 * @{
Kojto 122:f9eeca106725 180 */
Kojto 122:f9eeca106725 181 #define HAL_CEC_ERROR_NONE (uint32_t) 0x0 /*!< No error */
Kojto 122:f9eeca106725 182 #define HAL_CEC_ERROR_RXOVR CEC_ISR_RXOVR /*!< CEC Rx-Overrun */
Kojto 122:f9eeca106725 183 #define HAL_CEC_ERROR_BRE CEC_ISR_BRE /*!< CEC Rx Bit Rising Error */
Kojto 122:f9eeca106725 184 #define HAL_CEC_ERROR_SBPE CEC_ISR_SBPE /*!< CEC Rx Short Bit period Error */
Kojto 122:f9eeca106725 185 #define HAL_CEC_ERROR_LBPE CEC_ISR_LBPE /*!< CEC Rx Long Bit period Error */
Kojto 122:f9eeca106725 186 #define HAL_CEC_ERROR_RXACKE CEC_ISR_RXACKE /*!< CEC Rx Missing Acknowledge */
Kojto 122:f9eeca106725 187 #define HAL_CEC_ERROR_ARBLST CEC_ISR_ARBLST /*!< CEC Arbitration Lost */
Kojto 122:f9eeca106725 188 #define HAL_CEC_ERROR_TXUDR CEC_ISR_TXUDR /*!< CEC Tx-Buffer Underrun */
Kojto 122:f9eeca106725 189 #define HAL_CEC_ERROR_TXERR CEC_ISR_TXERR /*!< CEC Tx-Error */
Kojto 122:f9eeca106725 190 #define HAL_CEC_ERROR_TXACKE CEC_ISR_TXACKE /*!< CEC Tx Missing Acknowledge */
Kojto 90:cb3d968589d8 191 /**
Kojto 90:cb3d968589d8 192 * @}
Kojto 90:cb3d968589d8 193 */
Kojto 90:cb3d968589d8 194
Kojto 122:f9eeca106725 195 /** @defgroup CEC_Signal_Free_Time CEC Signal Free Time setting parameter
Kojto 90:cb3d968589d8 196 * @{
Kojto 90:cb3d968589d8 197 */
Kojto 122:f9eeca106725 198 #define CEC_DEFAULT_SFT ((uint32_t)0x00000000) /*!< Transmission history-based signal free time (ruled by hardware) */
Kojto 122:f9eeca106725 199 #define CEC_0_5_BITPERIOD_SFT ((uint32_t)0x00000001) /*!< 0.5 nominal data bit period */
Kojto 122:f9eeca106725 200 #define CEC_1_5_BITPERIOD_SFT ((uint32_t)0x00000002) /*!< 1.5 nominal data bit periods */
Kojto 122:f9eeca106725 201 #define CEC_2_5_BITPERIOD_SFT ((uint32_t)0x00000003) /*!< 2.5 nominal data bit periods */
Kojto 122:f9eeca106725 202 #define CEC_3_5_BITPERIOD_SFT ((uint32_t)0x00000004) /*!< 3.5 nominal data bit periods */
Kojto 122:f9eeca106725 203 #define CEC_4_5_BITPERIOD_SFT ((uint32_t)0x00000005) /*!< 4.5 nominal data bit periods */
Kojto 122:f9eeca106725 204 #define CEC_5_5_BITPERIOD_SFT ((uint32_t)0x00000006) /*!< 5.5 nominal data bit periods */
Kojto 122:f9eeca106725 205 #define CEC_6_5_BITPERIOD_SFT ((uint32_t)0x00000007) /*!< 6.5 nominal data bit periods */
Kojto 122:f9eeca106725 206 /**
Kojto 122:f9eeca106725 207 * @}
Kojto 122:f9eeca106725 208 */
Kojto 122:f9eeca106725 209
Kojto 122:f9eeca106725 210 /** @defgroup CEC_Tolerance CEC Receiver Tolerance
Kojto 122:f9eeca106725 211 * @{
Kojto 122:f9eeca106725 212 */
Kojto 122:f9eeca106725 213 #define CEC_STANDARD_TOLERANCE ((uint32_t)0x00000000) /*!< Standard tolerance margin */
Kojto 122:f9eeca106725 214 #define CEC_EXTENDED_TOLERANCE ((uint32_t)CEC_CFGR_RXTOL) /*!< Extended Tolerance */
Kojto 90:cb3d968589d8 215 /**
Kojto 90:cb3d968589d8 216 * @}
Kojto 90:cb3d968589d8 217 */
Kojto 90:cb3d968589d8 218
Kojto 122:f9eeca106725 219 /** @defgroup CEC_BRERxStop CEC Reception Stop on Error
Kojto 90:cb3d968589d8 220 * @{
Kojto 90:cb3d968589d8 221 */
Kojto 122:f9eeca106725 222 #define CEC_NO_RX_STOP_ON_BRE ((uint32_t)0x00000000) /*!< CEC reception not stopped by BRE detection */
Kojto 122:f9eeca106725 223 #define CEC_RX_STOP_ON_BRE ((uint32_t)CEC_CFGR_BRESTP) /*!< CEC reception stopped by BRE detection */
Kojto 90:cb3d968589d8 224 /**
Kojto 90:cb3d968589d8 225 * @}
Kojto 90:cb3d968589d8 226 */
Kojto 90:cb3d968589d8 227
Kojto 122:f9eeca106725 228 /** @defgroup CEC_BREErrorBitGen CEC Error Bit Generation if Bit Rise Error reported
Kojto 90:cb3d968589d8 229 * @{
Kojto 90:cb3d968589d8 230 */
Kojto 122:f9eeca106725 231 #define CEC_BRE_ERRORBIT_NO_GENERATION ((uint32_t)0x00000000) /*!< No Error-Bit on CEC line in case of BRE detection */
Kojto 122:f9eeca106725 232 #define CEC_BRE_ERRORBIT_GENERATION ((uint32_t)CEC_CFGR_BREGEN) /*!< Error-Bit on CEC line in case of BRE detection */
Kojto 90:cb3d968589d8 233 /**
Kojto 90:cb3d968589d8 234 * @}
Kojto 90:cb3d968589d8 235 */
Kojto 90:cb3d968589d8 236
Kojto 122:f9eeca106725 237 /** @defgroup CEC_LBPEErrorBitGen CEC Error Bit Generation if Long Bit Period Error reported
Kojto 90:cb3d968589d8 238 * @{
Kojto 90:cb3d968589d8 239 */
Kojto 122:f9eeca106725 240 #define CEC_LBPE_ERRORBIT_NO_GENERATION ((uint32_t)0x00000000) /*!< No Error-Bit on CEC line in case of LBPE detection */
Kojto 122:f9eeca106725 241 #define CEC_LBPE_ERRORBIT_GENERATION ((uint32_t)CEC_CFGR_LBPEGEN) /*!< Error-Bit on CEC line in case of LBPE detection */
Kojto 90:cb3d968589d8 242 /**
Kojto 90:cb3d968589d8 243 * @}
Kojto 90:cb3d968589d8 244 */
Kojto 90:cb3d968589d8 245
Kojto 122:f9eeca106725 246 /** @defgroup CEC_BroadCastMsgErrorBitGen CEC Error Bit Generation on Broadcast message
Kojto 90:cb3d968589d8 247 * @{
Kojto 90:cb3d968589d8 248 */
Kojto 122:f9eeca106725 249 #define CEC_BROADCASTERROR_ERRORBIT_GENERATION ((uint32_t)0x00000000) /*!< Error-Bit on CEC line for specific error conditions
Kojto 122:f9eeca106725 250 on a broadcast message (cf Reference Manual) */
Kojto 122:f9eeca106725 251 #define CEC_BROADCASTERROR_NO_ERRORBIT_GENERATION ((uint32_t)CEC_CFGR_BRDNOGEN) /*!< No Error-Bit on CEC line for specific error conditions
Kojto 122:f9eeca106725 252 on a broadcast message (cf Reference Manual) */
Kojto 90:cb3d968589d8 253 /**
Kojto 90:cb3d968589d8 254 * @}
Kojto 90:cb3d968589d8 255 */
Kojto 90:cb3d968589d8 256
Kojto 122:f9eeca106725 257 /** @defgroup CEC_SFT_Option CEC Signal Free Time start option
Kojto 90:cb3d968589d8 258 * @{
Kojto 90:cb3d968589d8 259 */
Kojto 122:f9eeca106725 260 #define CEC_SFT_START_ON_TXSOM ((uint32_t)0x00000000) /*!< SFT timer starts when TXSOM is set by software */
Kojto 122:f9eeca106725 261 #define CEC_SFT_START_ON_TX_RX_END ((uint32_t)CEC_CFGR_SFTOPT) /*!< SFT timer starts automatically at the end of message transmission/reception */
Kojto 90:cb3d968589d8 262 /**
Kojto 90:cb3d968589d8 263 * @}
Kojto 90:cb3d968589d8 264 */
Kojto 90:cb3d968589d8 265
Kojto 122:f9eeca106725 266 /** @defgroup CEC_Listening_Mode CEC Listening mode option
Kojto 90:cb3d968589d8 267 * @{
Kojto 90:cb3d968589d8 268 */
Kojto 122:f9eeca106725 269 #define CEC_REDUCED_LISTENING_MODE ((uint32_t)0x00000000) /*!< CEC peripheral receives only message addressed to its own address (OAR). */
Kojto 122:f9eeca106725 270 #define CEC_FULL_LISTENING_MODE ((uint32_t)CEC_CFGR_LSTN) /*!< CEC peripheral receives messages addressed to its own address (OAR) with
Kojto 122:f9eeca106725 271 positive acknowledge. Messages addressed to different destination are
Kojto 122:f9eeca106725 272 received, but without interfering with the CEC bus: no acknowledge sent. */
Kojto 90:cb3d968589d8 273 /**
Kojto 90:cb3d968589d8 274 * @}
Kojto 90:cb3d968589d8 275 */
Kojto 90:cb3d968589d8 276
Kojto 122:f9eeca106725 277 /** @defgroup CEC_OAR_Position CEC Device Own Address position in CEC CFGR register
Kojto 90:cb3d968589d8 278 * @{
Kojto 90:cb3d968589d8 279 */
Kojto 122:f9eeca106725 280 #define CEC_CFGR_OAR_LSB_POS ((uint32_t) 16) /*!< CEC Device Own Address position in CEC CFGR register */
Kojto 90:cb3d968589d8 281 /**
Kojto 90:cb3d968589d8 282 * @}
Kojto 90:cb3d968589d8 283 */
Kojto 122:f9eeca106725 284
Kojto 122:f9eeca106725 285 /** @defgroup CEC_Initiator_Position CEC Initiator logical address position in message header
Kojto 90:cb3d968589d8 286 * @{
Kojto 90:cb3d968589d8 287 */
Kojto 122:f9eeca106725 288 #define CEC_INITIATOR_LSB_POS ((uint32_t) 4) /*!< CEC Initiator logical address position in message header */
Kojto 90:cb3d968589d8 289 /**
Kojto 90:cb3d968589d8 290 * @}
Kojto 90:cb3d968589d8 291 */
Kojto 90:cb3d968589d8 292
Kojto 122:f9eeca106725 293 /** @defgroup CEC_Interrupts_Definitions CEC interrupts definition
Kojto 90:cb3d968589d8 294 * @{
Kojto 90:cb3d968589d8 295 */
Kojto 122:f9eeca106725 296 #define CEC_IT_TXACKE CEC_IER_TXACKEIE /*!< Tx missing acknowledge error interruption */
Kojto 122:f9eeca106725 297 #define CEC_IT_TXERR CEC_IER_TXERRIE /*!< Tx error interruption */
Kojto 122:f9eeca106725 298 #define CEC_IT_TXUDR CEC_IER_TXUDRIE /*!< Tx underrun interruption */
Kojto 122:f9eeca106725 299 #define CEC_IT_TXEND CEC_IER_TXENDIE /*!< Tx end of message interruption */
Kojto 122:f9eeca106725 300 #define CEC_IT_TXBR CEC_IER_TXBRIE /*!< Tx byte request interruption */
Kojto 122:f9eeca106725 301 #define CEC_IT_ARBLST CEC_IER_ARBLSTIE /*!< Arbitration lost interruption */
Kojto 122:f9eeca106725 302 #define CEC_IT_RXACKE CEC_IER_RXACKEIE /*!< Rx missing acknowledge error interruption */
Kojto 122:f9eeca106725 303 #define CEC_IT_LBPE CEC_IER_LBPEIE /*!< Long bit period error interruption */
Kojto 122:f9eeca106725 304 #define CEC_IT_SBPE CEC_IER_SBPEIE /*!< Short bit period error interruption */
Kojto 122:f9eeca106725 305 #define CEC_IT_BRE CEC_IER_BREIE /*!< Bit rising error interruption */
Kojto 122:f9eeca106725 306 #define CEC_IT_RXOVR CEC_IER_RXOVRIE /*!< Rx overrun interruption */
Kojto 122:f9eeca106725 307 #define CEC_IT_RXEND CEC_IER_RXENDIE /*!< End of reception interruption */
Kojto 122:f9eeca106725 308 #define CEC_IT_RXBR CEC_IER_RXBRIE /*!< RX byte received interruption */
Kojto 90:cb3d968589d8 309 /**
Kojto 90:cb3d968589d8 310 * @}
Kojto 122:f9eeca106725 311 */
Kojto 122:f9eeca106725 312
Kojto 122:f9eeca106725 313 /** @defgroup CEC_Flags_Definitions CEC flags definition
Kojto 90:cb3d968589d8 314 * @{
Kojto 90:cb3d968589d8 315 */
Kojto 122:f9eeca106725 316 #define CEC_FLAG_TXACKE CEC_ISR_TXACKE /*!< Tx missing acknowledge error flag */
Kojto 122:f9eeca106725 317 #define CEC_FLAG_TXERR CEC_ISR_TXERR /*!< Tx error flag */
Kojto 122:f9eeca106725 318 #define CEC_FLAG_TXUDR CEC_ISR_TXUDR /*!< Tx underrun flag */
Kojto 122:f9eeca106725 319 #define CEC_FLAG_TXEND CEC_ISR_TXEND /*!< Tx end of message flag */
Kojto 122:f9eeca106725 320 #define CEC_FLAG_TXBR CEC_ISR_TXBR /*!< Tx byte request flag */
Kojto 122:f9eeca106725 321 #define CEC_FLAG_ARBLST CEC_ISR_ARBLST /*!< Arbitration lost flag */
Kojto 122:f9eeca106725 322 #define CEC_FLAG_RXACKE CEC_ISR_RXACKE /*!< Rx missing acknowledge error flag */
Kojto 122:f9eeca106725 323 #define CEC_FLAG_LBPE CEC_ISR_LBPE /*!< Long bit period error flag */
Kojto 122:f9eeca106725 324 #define CEC_FLAG_SBPE CEC_ISR_SBPE /*!< Short bit period error flag */
Kojto 122:f9eeca106725 325 #define CEC_FLAG_BRE CEC_ISR_BRE /*!< Bit rising error flag */
Kojto 122:f9eeca106725 326 #define CEC_FLAG_RXOVR CEC_ISR_RXOVR /*!< Rx overrun flag */
Kojto 122:f9eeca106725 327 #define CEC_FLAG_RXEND CEC_ISR_RXEND /*!< End of reception flag */
Kojto 122:f9eeca106725 328 #define CEC_FLAG_RXBR CEC_ISR_RXBR /*!< RX byte received flag */
Kojto 122:f9eeca106725 329 /**
Kojto 122:f9eeca106725 330 * @}
Kojto 122:f9eeca106725 331 */
Kojto 122:f9eeca106725 332
Kojto 122:f9eeca106725 333 /** @defgroup CEC_ALL_ERROR CEC all RX or TX errors flags
Kojto 122:f9eeca106725 334 * @{
Kojto 122:f9eeca106725 335 */
Kojto 122:f9eeca106725 336 #define CEC_ISR_ALL_ERROR ((uint32_t)CEC_ISR_RXOVR|CEC_ISR_BRE|CEC_ISR_SBPE|CEC_ISR_LBPE|CEC_ISR_RXACKE|\
Kojto 122:f9eeca106725 337 CEC_ISR_ARBLST|CEC_ISR_TXUDR|CEC_ISR_TXERR|CEC_ISR_TXACKE) /*!< All Rx or Tx errors flags concatenation */
Kojto 122:f9eeca106725 338 /**
Kojto 122:f9eeca106725 339 * @}
Kojto 122:f9eeca106725 340 */
Kojto 122:f9eeca106725 341
Kojto 122:f9eeca106725 342 /** @defgroup CEC_IER_ALL_RX CEC all RX errors interrupts enabling flag
Kojto 122:f9eeca106725 343 * @{
Kojto 122:f9eeca106725 344 */
Kojto 122:f9eeca106725 345 #define CEC_IER_RX_ALL_ERR ((uint32_t)CEC_IER_RXACKEIE|CEC_IER_LBPEIE|CEC_IER_SBPEIE|CEC_IER_BREIE|CEC_IER_RXOVRIE) /*!< All Rx errors interruptions concatenation */
Kojto 90:cb3d968589d8 346 /**
Kojto 90:cb3d968589d8 347 * @}
Kojto 90:cb3d968589d8 348 */
Kojto 90:cb3d968589d8 349
Kojto 122:f9eeca106725 350 /** @defgroup CEC_IER_ALL_TX CEC all TX errors interrupts enabling flag
Kojto 90:cb3d968589d8 351 * @{
Kojto 90:cb3d968589d8 352 */
Kojto 122:f9eeca106725 353 #define CEC_IER_TX_ALL_ERR ((uint32_t)CEC_IER_TXACKEIE|CEC_IER_TXERRIE|CEC_IER_TXUDRIE|CEC_IER_ARBLSTIE) /*!< All Tx errors interruptions concatenation */
Kojto 90:cb3d968589d8 354 /**
Kojto 90:cb3d968589d8 355 * @}
Kojto 122:f9eeca106725 356 */
Kojto 90:cb3d968589d8 357
Kojto 90:cb3d968589d8 358 /**
Kojto 90:cb3d968589d8 359 * @}
Kojto 90:cb3d968589d8 360 */
Kojto 90:cb3d968589d8 361
Kojto 90:cb3d968589d8 362 /* Exported macros -----------------------------------------------------------*/
Kojto 90:cb3d968589d8 363 /** @defgroup CEC_Exported_Macros CEC Exported Macros
Kojto 90:cb3d968589d8 364 * @{
Kojto 90:cb3d968589d8 365 */
Kojto 90:cb3d968589d8 366
Kojto 90:cb3d968589d8 367 /** @brief Reset CEC handle state
Kojto 90:cb3d968589d8 368 * @param __HANDLE__: CEC handle.
Kojto 90:cb3d968589d8 369 * @retval None
Kojto 90:cb3d968589d8 370 */
Kojto 90:cb3d968589d8 371 #define __HAL_CEC_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_CEC_STATE_RESET)
Kojto 90:cb3d968589d8 372
Kojto 122:f9eeca106725 373 /** @brief Check whether or not the specified CEC interrupt flag is set.
Kojto 90:cb3d968589d8 374 * @param __HANDLE__: specifies the CEC Handle.
Kojto 122:f9eeca106725 375 * @param __FLAG__: specifies the interrupt to check.
Kojto 90:cb3d968589d8 376 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 377 * @arg CEC_FLAG_TXACKE: Tx Missing acknowledge Error
Kojto 122:f9eeca106725 378 * @arg CEC_FLAG_TXERR: Tx Error.
Kojto 122:f9eeca106725 379 * @arg CEC_FLAG_TXUDR: Tx-Buffer Underrun.
Kojto 122:f9eeca106725 380 * @arg CEC_FLAG_TXEND: End of transmission (successful transmission of the last byte).
Kojto 122:f9eeca106725 381 * @arg CEC_FLAG_TXBR: Tx-Byte Request.
Kojto 122:f9eeca106725 382 * @arg CEC_FLAG_ARBLST: Arbitration Lost
Kojto 122:f9eeca106725 383 * @arg CEC_FLAG_RXACKE: Rx-Missing Acknowledge
Kojto 122:f9eeca106725 384 * @arg CEC_FLAG_LBPE: Rx Long period Error
Kojto 122:f9eeca106725 385 * @arg CEC_FLAG_SBPE: Rx Short period Error
Kojto 122:f9eeca106725 386 * @arg CEC_FLAG_BRE: Rx Bit Rissing Error
Kojto 122:f9eeca106725 387 * @arg CEC_FLAG_RXOVR: Rx Overrun.
Kojto 122:f9eeca106725 388 * @arg CEC_FLAG_RXEND: End Of Reception.
Kojto 122:f9eeca106725 389 * @arg CEC_FLAG_RXBR: Rx-Byte Received.
Kojto 122:f9eeca106725 390 * @retval IT Status
Kojto 90:cb3d968589d8 391 */
Kojto 122:f9eeca106725 392 #define __HAL_CEC_GET_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR & (__FLAG__))
Kojto 90:cb3d968589d8 393
Kojto 122:f9eeca106725 394 /** @brief Clear the interrupt or status flag when raised (write at 1)
Kojto 90:cb3d968589d8 395 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 396 * @param __FLAG__: specifies the interrupt/status flag to clear.
Kojto 90:cb3d968589d8 397 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 398 * @arg CEC_FLAG_TXACKE: Tx Missing acknowledge Error
Kojto 122:f9eeca106725 399 * @arg CEC_FLAG_TXERR: Tx Error.
Kojto 122:f9eeca106725 400 * @arg CEC_FLAG_TXUDR: Tx-Buffer Underrun.
Kojto 122:f9eeca106725 401 * @arg CEC_FLAG_TXEND: End of transmission (successful transmission of the last byte).
Kojto 122:f9eeca106725 402 * @arg CEC_FLAG_TXBR: Tx-Byte Request.
Kojto 122:f9eeca106725 403 * @arg CEC_FLAG_ARBLST: Arbitration Lost
Kojto 122:f9eeca106725 404 * @arg CEC_FLAG_RXACKE: Rx-Missing Acknowledge
Kojto 122:f9eeca106725 405 * @arg CEC_FLAG_LBPE: Rx Long period Error
Kojto 122:f9eeca106725 406 * @arg CEC_FLAG_SBPE: Rx Short period Error
Kojto 122:f9eeca106725 407 * @arg CEC_FLAG_BRE: Rx Bit Rissing Error
Kojto 122:f9eeca106725 408 * @arg CEC_FLAG_RXOVR: Rx Overrun.
Kojto 122:f9eeca106725 409 * @arg CEC_FLAG_RXEND: End Of Reception.
Kojto 122:f9eeca106725 410 * @arg CEC_FLAG_RXBR: Rx-Byte Received.
Kojto 90:cb3d968589d8 411 * @retval none
Kojto 90:cb3d968589d8 412 */
Kojto 122:f9eeca106725 413 #define __HAL_CEC_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR |= (__FLAG__))
Kojto 90:cb3d968589d8 414
Kojto 122:f9eeca106725 415 /** @brief Enable the specified CEC interrupt.
Kojto 90:cb3d968589d8 416 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 417 * @param __INTERRUPT__: specifies the CEC interrupt to enable.
Kojto 90:cb3d968589d8 418 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 419 * @arg CEC_IT_TXACKE: Tx Missing acknowledge Error IT Enable
Kojto 122:f9eeca106725 420 * @arg CEC_IT_TXERR: Tx Error IT Enable
Kojto 122:f9eeca106725 421 * @arg CEC_IT_TXUDR: Tx-Buffer Underrun IT Enable
Kojto 122:f9eeca106725 422 * @arg CEC_IT_TXEND: End of transmission IT Enable
Kojto 122:f9eeca106725 423 * @arg CEC_IT_TXBR: Tx-Byte Request IT Enable
Kojto 122:f9eeca106725 424 * @arg CEC_IT_ARBLST: Arbitration Lost IT Enable
Kojto 122:f9eeca106725 425 * @arg CEC_IT_RXACKE: Rx-Missing Acknowledge IT Enable
Kojto 122:f9eeca106725 426 * @arg CEC_IT_LBPE: Rx Long period Error IT Enable
Kojto 122:f9eeca106725 427 * @arg CEC_IT_SBPE: Rx Short period Error IT Enable
Kojto 122:f9eeca106725 428 * @arg CEC_IT_BRE: Rx Bit Rising Error IT Enable
Kojto 122:f9eeca106725 429 * @arg CEC_IT_RXOVR: Rx Overrun IT Enable
Kojto 122:f9eeca106725 430 * @arg CEC_IT_RXEND: End Of Reception IT Enable
Kojto 122:f9eeca106725 431 * @arg CEC_IT_RXBR: Rx-Byte Received IT Enable
Kojto 90:cb3d968589d8 432 * @retval none
Kojto 90:cb3d968589d8 433 */
Kojto 90:cb3d968589d8 434 #define __HAL_CEC_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IER |= (__INTERRUPT__))
Kojto 90:cb3d968589d8 435
Kojto 122:f9eeca106725 436 /** @brief Disable the specified CEC interrupt.
Kojto 90:cb3d968589d8 437 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 438 * @param __INTERRUPT__: specifies the CEC interrupt to disable.
Kojto 90:cb3d968589d8 439 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 440 * @arg CEC_IT_TXACKE: Tx Missing acknowledge Error IT Enable
Kojto 122:f9eeca106725 441 * @arg CEC_IT_TXERR: Tx Error IT Enable
Kojto 122:f9eeca106725 442 * @arg CEC_IT_TXUDR: Tx-Buffer Underrun IT Enable
Kojto 122:f9eeca106725 443 * @arg CEC_IT_TXEND: End of transmission IT Enable
Kojto 122:f9eeca106725 444 * @arg CEC_IT_TXBR: Tx-Byte Request IT Enable
Kojto 122:f9eeca106725 445 * @arg CEC_IT_ARBLST: Arbitration Lost IT Enable
Kojto 122:f9eeca106725 446 * @arg CEC_IT_RXACKE: Rx-Missing Acknowledge IT Enable
Kojto 122:f9eeca106725 447 * @arg CEC_IT_LBPE: Rx Long period Error IT Enable
Kojto 122:f9eeca106725 448 * @arg CEC_IT_SBPE: Rx Short period Error IT Enable
Kojto 122:f9eeca106725 449 * @arg CEC_IT_BRE: Rx Bit Rising Error IT Enable
Kojto 122:f9eeca106725 450 * @arg CEC_IT_RXOVR: Rx Overrun IT Enable
Kojto 122:f9eeca106725 451 * @arg CEC_IT_RXEND: End Of Reception IT Enable
Kojto 122:f9eeca106725 452 * @arg CEC_IT_RXBR: Rx-Byte Received IT Enable
Kojto 90:cb3d968589d8 453 * @retval none
Kojto 90:cb3d968589d8 454 */
Kojto 90:cb3d968589d8 455 #define __HAL_CEC_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IER &= (~(__INTERRUPT__)))
Kojto 90:cb3d968589d8 456
Kojto 122:f9eeca106725 457 /** @brief Check whether or not the specified CEC interrupt is enabled.
Kojto 90:cb3d968589d8 458 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 459 * @param __INTERRUPT__: specifies the CEC interrupt to check.
Kojto 90:cb3d968589d8 460 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 461 * @arg CEC_IT_TXACKE: Tx Missing acknowledge Error IT Enable
Kojto 122:f9eeca106725 462 * @arg CEC_IT_TXERR: Tx Error IT Enable
Kojto 122:f9eeca106725 463 * @arg CEC_IT_TXUDR: Tx-Buffer Underrun IT Enable
Kojto 122:f9eeca106725 464 * @arg CEC_IT_TXEND: End of transmission IT Enable
Kojto 122:f9eeca106725 465 * @arg CEC_IT_TXBR: Tx-Byte Request IT Enable
Kojto 122:f9eeca106725 466 * @arg CEC_IT_ARBLST: Arbitration Lost IT Enable
Kojto 122:f9eeca106725 467 * @arg CEC_IT_RXACKE: Rx-Missing Acknowledge IT Enable
Kojto 122:f9eeca106725 468 * @arg CEC_IT_LBPE: Rx Long period Error IT Enable
Kojto 122:f9eeca106725 469 * @arg CEC_IT_SBPE: Rx Short period Error IT Enable
Kojto 122:f9eeca106725 470 * @arg CEC_IT_BRE: Rx Bit Rising Error IT Enable
Kojto 122:f9eeca106725 471 * @arg CEC_IT_RXOVR: Rx Overrun IT Enable
Kojto 122:f9eeca106725 472 * @arg CEC_IT_RXEND: End Of Reception IT Enable
Kojto 122:f9eeca106725 473 * @arg CEC_IT_RXBR: Rx-Byte Received IT Enable
Kojto 122:f9eeca106725 474 * @retval Flag Status
Kojto 90:cb3d968589d8 475 */
Kojto 90:cb3d968589d8 476 #define __HAL_CEC_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IER & (__INTERRUPT__))
Kojto 90:cb3d968589d8 477
Kojto 122:f9eeca106725 478 /** @brief Enable the CEC device.
Kojto 90:cb3d968589d8 479 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 480 * @retval none
Kojto 90:cb3d968589d8 481 */
Kojto 90:cb3d968589d8 482 #define __HAL_CEC_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= CEC_CR_CECEN)
Kojto 90:cb3d968589d8 483
Kojto 122:f9eeca106725 484 /** @brief Disable the CEC device.
Kojto 90:cb3d968589d8 485 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 486 * @retval none
Kojto 90:cb3d968589d8 487 */
Kojto 90:cb3d968589d8 488 #define __HAL_CEC_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~CEC_CR_CECEN)
Kojto 90:cb3d968589d8 489
Kojto 122:f9eeca106725 490 /** @brief Set Transmission Start flag.
Kojto 90:cb3d968589d8 491 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 492 * @retval none
Kojto 90:cb3d968589d8 493 */
Kojto 90:cb3d968589d8 494 #define __HAL_CEC_FIRST_BYTE_TX_SET(__HANDLE__) ((__HANDLE__)->Instance->CR |= CEC_CR_TXSOM)
Kojto 90:cb3d968589d8 495
Kojto 122:f9eeca106725 496 /** @brief Set Transmission End flag.
Kojto 122:f9eeca106725 497 * @param __HANDLE__: specifies the CEC Handle.
Kojto 122:f9eeca106725 498 * @note If the CEC message consists of only one byte, TXEOM must be set before TXSOM.
Kojto 90:cb3d968589d8 499 * @retval none
Kojto 122:f9eeca106725 500 *
Kojto 90:cb3d968589d8 501 */
Kojto 90:cb3d968589d8 502 #define __HAL_CEC_LAST_BYTE_TX_SET(__HANDLE__) ((__HANDLE__)->Instance->CR |= CEC_CR_TXEOM)
Kojto 90:cb3d968589d8 503
Kojto 122:f9eeca106725 504 /** @brief Get Transmission Start flag.
Kojto 90:cb3d968589d8 505 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 506 * @retval FlagStatus
Kojto 90:cb3d968589d8 507 */
Kojto 90:cb3d968589d8 508 #define __HAL_CEC_GET_TRANSMISSION_START_FLAG(__HANDLE__) ((__HANDLE__)->Instance->CR & CEC_CR_TXSOM)
Kojto 90:cb3d968589d8 509
Kojto 122:f9eeca106725 510 /** @brief Get Transmission End flag.
Kojto 90:cb3d968589d8 511 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 512 * @retval FlagStatus
Kojto 90:cb3d968589d8 513 */
Kojto 90:cb3d968589d8 514 #define __HAL_CEC_GET_TRANSMISSION_END_FLAG(__HANDLE__) ((__HANDLE__)->Instance->CR & CEC_CR_TXEOM)
Kojto 90:cb3d968589d8 515
Kojto 122:f9eeca106725 516 /** @brief Clear OAR register.
Kojto 90:cb3d968589d8 517 * @param __HANDLE__: specifies the CEC Handle.
Kojto 90:cb3d968589d8 518 * @retval none
Kojto 90:cb3d968589d8 519 */
Kojto 90:cb3d968589d8 520 #define __HAL_CEC_CLEAR_OAR(__HANDLE__) CLEAR_BIT((__HANDLE__)->Instance->CFGR, CEC_CFGR_OAR)
Kojto 90:cb3d968589d8 521
Kojto 122:f9eeca106725 522 /** @brief Set OAR register (without resetting previously set address in case of multi-address mode).
Kojto 90:cb3d968589d8 523 * @param __HANDLE__: specifies the CEC Handle.
Kojto 122:f9eeca106725 524 * @param __ADDRESS__: own address value (CEC logical address is identified by bit position)
Kojto 122:f9eeca106725 525 * @note To reset OAR, __HAL_CEC_CLEAR_OAR() needs to be called beforehand.
Kojto 90:cb3d968589d8 526 * @retval none
Kojto 90:cb3d968589d8 527 */
Kojto 90:cb3d968589d8 528 #define __HAL_CEC_SET_OAR(__HANDLE__,__ADDRESS__) SET_BIT((__HANDLE__)->Instance->CFGR, (__ADDRESS__)<< CEC_CFGR_OAR_LSB_POS)
Kojto 90:cb3d968589d8 529
Kojto 90:cb3d968589d8 530 /**
Kojto 90:cb3d968589d8 531 * @}
Kojto 90:cb3d968589d8 532 */
Kojto 90:cb3d968589d8 533
Kojto 90:cb3d968589d8 534 /* Exported functions --------------------------------------------------------*/
Kojto 90:cb3d968589d8 535 /** @addtogroup CEC_Exported_Functions CEC Exported Functions
Kojto 90:cb3d968589d8 536 * @{
Kojto 90:cb3d968589d8 537 */
Kojto 90:cb3d968589d8 538
Kojto 90:cb3d968589d8 539 /** @addtogroup CEC_Exported_Functions_Group1 Initialization and de-initialization functions
Kojto 90:cb3d968589d8 540 * @brief Initialization and Configuration functions
Kojto 90:cb3d968589d8 541 * @{
Kojto 90:cb3d968589d8 542 */
Kojto 90:cb3d968589d8 543 /* Initialization and de-initialization functions ****************************/
Kojto 90:cb3d968589d8 544 HAL_StatusTypeDef HAL_CEC_Init(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 545 HAL_StatusTypeDef HAL_CEC_DeInit(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 546 void HAL_CEC_MspInit(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 547 void HAL_CEC_MspDeInit(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 548 /**
Kojto 90:cb3d968589d8 549 * @}
Kojto 90:cb3d968589d8 550 */
Kojto 90:cb3d968589d8 551
Kojto 90:cb3d968589d8 552 /** @addtogroup CEC_Exported_Functions_Group2 Input and Output operation functions
Kojto 90:cb3d968589d8 553 * @brief CEC Transmit/Receive functions
Kojto 90:cb3d968589d8 554 * @{
Kojto 90:cb3d968589d8 555 */
Kojto 122:f9eeca106725 556 /* I/O operation functions ***************************************************/
Kojto 90:cb3d968589d8 557 HAL_StatusTypeDef HAL_CEC_Transmit(CEC_HandleTypeDef *hcec, uint8_t DestinationAddress, uint8_t *pData, uint32_t Size, uint32_t Timeout);
Kojto 90:cb3d968589d8 558 HAL_StatusTypeDef HAL_CEC_Receive(CEC_HandleTypeDef *hcec, uint8_t *pData, uint32_t Timeout);
Kojto 90:cb3d968589d8 559 HAL_StatusTypeDef HAL_CEC_Transmit_IT(CEC_HandleTypeDef *hcec, uint8_t DestinationAddress, uint8_t *pData, uint32_t Size);
Kojto 90:cb3d968589d8 560 HAL_StatusTypeDef HAL_CEC_Receive_IT(CEC_HandleTypeDef *hcec, uint8_t *pData);
Kojto 122:f9eeca106725 561 uint32_t HAL_CEC_GetReceivedFrameSize(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 562 void HAL_CEC_IRQHandler(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 563 void HAL_CEC_TxCpltCallback(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 564 void HAL_CEC_RxCpltCallback(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 565 void HAL_CEC_ErrorCallback(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 566 /**
Kojto 90:cb3d968589d8 567 * @}
Kojto 90:cb3d968589d8 568 */
Kojto 90:cb3d968589d8 569
Kojto 122:f9eeca106725 570 /** @addtogroup CEC_Exported_Functions_Group3 Peripheral Control functions
Kojto 90:cb3d968589d8 571 * @brief CEC control functions
Kojto 90:cb3d968589d8 572 * @{
Kojto 90:cb3d968589d8 573 */
Kojto 90:cb3d968589d8 574 /* Peripheral State and Error functions ***************************************/
Kojto 90:cb3d968589d8 575 HAL_CEC_StateTypeDef HAL_CEC_GetState(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 576 uint32_t HAL_CEC_GetError(CEC_HandleTypeDef *hcec);
Kojto 90:cb3d968589d8 577 /**
Kojto 90:cb3d968589d8 578 * @}
Kojto 90:cb3d968589d8 579 */
Kojto 90:cb3d968589d8 580
Kojto 90:cb3d968589d8 581 /**
Kojto 90:cb3d968589d8 582 * @}
Kojto 90:cb3d968589d8 583 */
Kojto 122:f9eeca106725 584
Kojto 122:f9eeca106725 585 /* Private macros ------------------------------------------------------------*/
Kojto 122:f9eeca106725 586 /** @defgroup CEC_Private_Macros CEC Private Macros
Kojto 122:f9eeca106725 587 * @{
Kojto 122:f9eeca106725 588 */
Kojto 90:cb3d968589d8 589
Kojto 122:f9eeca106725 590 #define IS_CEC_SIGNALFREETIME(__SFT__) ((__SFT__) <= CEC_CFGR_SFT)
Kojto 122:f9eeca106725 591
Kojto 122:f9eeca106725 592 #define IS_CEC_TOLERANCE(__RXTOL__) (((__RXTOL__) == CEC_STANDARD_TOLERANCE) || \
Kojto 122:f9eeca106725 593 ((__RXTOL__) == CEC_EXTENDED_TOLERANCE))
Kojto 122:f9eeca106725 594
Kojto 122:f9eeca106725 595 #define IS_CEC_BRERXSTOP(__BRERXSTOP__) (((__BRERXSTOP__) == CEC_NO_RX_STOP_ON_BRE) || \
Kojto 122:f9eeca106725 596 ((__BRERXSTOP__) == CEC_RX_STOP_ON_BRE))
Kojto 122:f9eeca106725 597
Kojto 122:f9eeca106725 598 #define IS_CEC_BREERRORBITGEN(__ERRORBITGEN__) (((__ERRORBITGEN__) == CEC_BRE_ERRORBIT_NO_GENERATION) || \
Kojto 122:f9eeca106725 599 ((__ERRORBITGEN__) == CEC_BRE_ERRORBIT_GENERATION))
Kojto 122:f9eeca106725 600
Kojto 122:f9eeca106725 601 #define IS_CEC_LBPEERRORBITGEN(__ERRORBITGEN__) (((__ERRORBITGEN__) == CEC_LBPE_ERRORBIT_NO_GENERATION) || \
Kojto 122:f9eeca106725 602 ((__ERRORBITGEN__) == CEC_LBPE_ERRORBIT_GENERATION))
Kojto 122:f9eeca106725 603
Kojto 122:f9eeca106725 604 #define IS_CEC_BROADCASTERROR_NO_ERRORBIT_GENERATION(__ERRORBITGEN__) (((__ERRORBITGEN__) == CEC_BROADCASTERROR_ERRORBIT_GENERATION) || \
Kojto 122:f9eeca106725 605 ((__ERRORBITGEN__) == CEC_BROADCASTERROR_NO_ERRORBIT_GENERATION))
Kojto 122:f9eeca106725 606
Kojto 122:f9eeca106725 607 #define IS_CEC_SFTOP(__SFTOP__) (((__SFTOP__) == CEC_SFT_START_ON_TXSOM) || \
Kojto 122:f9eeca106725 608 ((__SFTOP__) == CEC_SFT_START_ON_TX_RX_END))
Kojto 122:f9eeca106725 609
Kojto 122:f9eeca106725 610 #define IS_CEC_LISTENING_MODE(__MODE__) (((__MODE__) == CEC_REDUCED_LISTENING_MODE) || \
Kojto 122:f9eeca106725 611 ((__MODE__) == CEC_FULL_LISTENING_MODE))
Kojto 122:f9eeca106725 612
Kojto 122:f9eeca106725 613 /** @brief Check CEC device Own Address Register (OAR) setting.
Kojto 122:f9eeca106725 614 * OAR address is written in a 15-bit field within CEC_CFGR register.
Kojto 122:f9eeca106725 615 * @param __ADDRESS__: CEC own address.
Kojto 122:f9eeca106725 616 * @retval Test result (TRUE or FALSE).
Kojto 122:f9eeca106725 617 */
Kojto 122:f9eeca106725 618 #define IS_CEC_OAR_ADDRESS(__ADDRESS__) ((__ADDRESS__) <= 0x07FFF)
Kojto 122:f9eeca106725 619
Kojto 122:f9eeca106725 620 /** @brief Check CEC initiator or destination logical address setting.
Kojto 122:f9eeca106725 621 * Initiator and destination addresses are coded over 4 bits.
Kojto 122:f9eeca106725 622 * @param __ADDRESS__: CEC initiator or logical address.
Kojto 122:f9eeca106725 623 * @retval Test result (TRUE or FALSE).
Kojto 122:f9eeca106725 624 */
Kojto 122:f9eeca106725 625 #define IS_CEC_ADDRESS(__ADDRESS__) ((__ADDRESS__) <= 0xF)
Kojto 122:f9eeca106725 626
Kojto 122:f9eeca106725 627 /** @brief Check CEC message size.
Kojto 122:f9eeca106725 628 * The message size is the payload size: without counting the header,
Kojto 122:f9eeca106725 629 * it varies from 0 byte (ping operation, one header only, no payload) to
Kojto 122:f9eeca106725 630 * 15 bytes (1 opcode and up to 14 operands following the header).
Kojto 122:f9eeca106725 631 * @param __SIZE__: CEC message size.
Kojto 122:f9eeca106725 632 * @retval Test result (TRUE or FALSE).
Kojto 122:f9eeca106725 633 */
Kojto 122:f9eeca106725 634 #define IS_CEC_MSGSIZE(__SIZE__) ((__SIZE__) <= 0xF)
Kojto 122:f9eeca106725 635 /**
Kojto 122:f9eeca106725 636 * @}
Kojto 122:f9eeca106725 637 */
Kojto 122:f9eeca106725 638
Kojto 90:cb3d968589d8 639 /**
Kojto 90:cb3d968589d8 640 * @}
Kojto 90:cb3d968589d8 641 */
Kojto 90:cb3d968589d8 642
Kojto 90:cb3d968589d8 643 /**
Kojto 90:cb3d968589d8 644 * @}
Kojto 90:cb3d968589d8 645 */
Kojto 90:cb3d968589d8 646
Kojto 90:cb3d968589d8 647 #endif /* defined(STM32F373xC) || defined(STM32F378xx) */
Kojto 90:cb3d968589d8 648
Kojto 90:cb3d968589d8 649 #ifdef __cplusplus
Kojto 90:cb3d968589d8 650 }
Kojto 90:cb3d968589d8 651 #endif
Kojto 90:cb3d968589d8 652
Kojto 90:cb3d968589d8 653 #endif /* __STM32F3xx_HAL_CEC_H */
Kojto 90:cb3d968589d8 654
Kojto 90:cb3d968589d8 655 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Kojto 122:f9eeca106725 656