cmem7_i2c.h 8.5 KB
Newer Older
wuyangyong's avatar
wuyangyong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
/**
	*****************************************************************************
	* @file     cmem7_i2c.h
	*
	* @brief    CMEM7 I2C header file
	*
	*
	* @version  V1.0
	* @date     3. September 2013
	*
	* @note               
	*           
	*****************************************************************************
	* @attention
	*
	* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
	* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
	* TIME. AS A RESULT, CAPITAL-MICRO SHALL NOT BE HELD LIABLE FOR ANY DIRECT, 
	* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
	* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
	* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
	*
	* <h2><center>&copy; COPYRIGHT 2013 Capital-micro </center></h2>
	*****************************************************************************
	*/
	
#ifndef __CMEM7_I2C_H
#define __CMEM7_I2C_H

#ifdef __cplusplus
 extern "C" {
#endif

#include "cmem7.h"
#include "cmem7_conf.h"


#define IS_I2C_ALL_PERIPH(PERIPH) (((PERIPH) == I2C0) || \
                                   ((PERIPH) == I2C1))

/** @defgroup I2C_Mode
  * @{
  */
#define I2C_Mode_Slave                  0
#define I2C_Mode_Master                 1
#define IS_I2C_MODE(MODE) (((MODE) == I2C_Mode_Slave) || \
                           ((MODE) == I2C_Mode_Master))
/**
  * @}
  */

/** @defgroup I2C_ADDR_WIDTH
  * @{
  */
#define I2C_ADDR_WIDTH_7BIT                  0
#define I2C_ADDR_WIDTH_10BIT                 1
#define IS_I2C_ADDR_WIDTH(WIDTH) (((WIDTH) == I2C_ADDR_WIDTH_7BIT) || \
                                  ((WIDTH) == I2C_ADDR_WIDTH_10BIT))
/**
  * @}
  */

/** @defgroup I2C_INT
  * @{
  */			
#define I2C_INT_RX_FIFO_NOT_EMPTY      0x00000004 		/*!< Can't be clear but read FIFO */
#define I2C_INT_RD_REQUEST             0x00000020     /*!< Slave was requested to send data */
#define I2C_INT_TX_ABORT               0x00000040     /*!< Error while sending data */
#define I2C_INT_RX_DONE                0x00000080     /*!< Slave sent all requested data */
#define I2C_INT_TX_DONE                0x00000100     /*!< Master accomplish to send all data */

#define I2C_INT_ALL                    (I2C_INT_RX_FIFO_NOT_EMPTY | \
																				I2C_INT_RD_REQUEST | \
																				I2C_INT_TX_ABORT | \
																				I2C_INT_RX_DONE | \
																				I2C_INT_TX_DONE)

#define IS_I2C_INT(INT)                (((INT) != 0) && (((INT) & ~I2C_INT_ALL) == 0))
/**
  * @}
  */

/** @defgroup I2C_STATUS
  * @{
  */
#define I2C_STATUS_RX_FIFO_NOT_EMPTY   0x00200000 		/*!< Can't be clear but read FIFO */
#define I2C_STATUS_RD_REQUEST          0x01000000     /*!< Slave was requested to send data */
#define I2C_STATUS_TX_ABORT            0x02000000     /*!< Error while sending data */
#define I2C_STATUS_RX_DONE             0x04000000     /*!< Slave sent all requested data */
#define I2C_STATUS_TX_DONE             0x08000000     /*!< Master accomplish to send all data */

#define I2C_STATUS_ALL                 (I2C_STATUS_RX_FIFO_NOT_EMPTY | \
																				I2C_STATUS_RD_REQUEST | \
																				I2C_STATUS_TX_ABORT | \
																				I2C_STATUS_RX_DONE | \
																				I2C_STATUS_TX_DONE)

#define IS_I2C_STATUS(STATUS)          (((STATUS) != 0) && (((STATUS) & ~I2C_STATUS_ALL) == 0))
/**
  * @}
  */

/**
  * @brief  I2C timing structure
	*/
typedef struct
{
  uint32_t I2C_Freq;                /*!< I2C frquency */

	uint16_t I2C_TsuDat;              /*!< nano second of TSU:DAT */
  uint16_t I2C_Tsetup;              /*!< nano second of THD:STA and TSU:STO */ 
  uint16_t I2C_Tbuf;                /*!< nano second of TBUF */       	
	uint16_t I2C_TsuSta;              /*!< nano second of TSU:STA */ 
	
	BOOL I2C_SdaFilterEn;             /*!< enabled flag of SDA filter */
	uint8_t I2C_SdaFilterSpike;       /*!< spikes of SDA filter */
	BOOL I2C_SclFilterEn;             /*!< enabled flag of SCL filter */
	uint8_t I2C_SclFilterSpike;       /*!< spikes of SCL filter */
	
} I2C_InitTimingDef;

/**
  * @brief  I2C initialization structure
	*/
typedef struct
{
  uint8_t I2C_Mode;                 /*!< Specifies the I2C mode.
                                         This parameter can be a value of @ref I2C_mode */
	uint8_t I2C_AddressWidth;         /*!< 7- or 10-bits width address, ref as @ref I2C_ADDR_WIDTH */
	uint8_t I2C_Address;              /*!< 7- or 10-bits address */
	I2C_InitTimingDef* timing;        /*!< timing structure, null if don't set */		
} I2C_InitTypeDef;

/**
  * @brief  I2C initialization
  * @note   This function should be called at first before any other interfaces.
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] init A pointer to structure I2C_InitTypeDef
  * @retval None
	*/ 
void I2C_Init(I2C0_Type* I2Cx, I2C_InitTypeDef* I2C_Init);

/**
  * @brief  Enable or disable I2C. 
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] Enable The bit indicates if the specific I2C is enable or not
  * @retval None
	*/ 
void I2C_Enable(I2C0_Type* I2Cx, BOOL enable);

/**
  * @brief  Enable or disable I2C interrupt. 
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] Int interrupt mask bits, which can be the combination of @ref I2C_Int
	* @param[in] Enable The bit indicates if specific interrupts are enable or not
  * @retval None
	*/ 
void I2C_EnableInt(I2C0_Type* I2Cx, uint32_t Int, BOOL enable);

/**
  * @brief  Check specific interrupts are set or not 
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] Int interrupt mask bits, which can be the combination of @ref I2C_Int
  * @retval BOOL The bit indicates if specific interrupts are enable or not
	*/
BOOL I2C_GetIntStatus(I2C0_Type* I2Cx, uint32_t Int);

/**
  * @brief  Clear specific interrupts
	* @note   Specific interrupt clear will clear correspective status as well
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] Int interrupt mask bits, which can be the combination of @ref I2C_Int
  * @retval None
	*/
void I2C_ClearInt(I2C0_Type* I2Cx, uint32_t Int);

/**
  * @brief  Check specific status are set or not 
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] Status Status mask bits, which can be the combination of @ref I2C_STATUS
  * @retval BOOL The bit indicates if specific status are set or not
	*/
BOOL I2C_GetStatus(I2C0_Type* I2Cx, uint32_t Status);

/**
  * @brief  Clear specific status
	* @note   Specific status clear will clear correspective interrupt as well
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] Status Status mask bits, which can be the combination of @ref I2C_STATUS
  * @retval None
	*/
void I2C_ClearStatus(I2C0_Type* I2Cx, uint32_t Status);

/**
  * @brief  I2C send read request in master mode
	* @note   Users must call I2C_StopReq between 2 requests
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] size Expected data size to be read
  * @retval BOOL The bit indicates if read request to be sent is valid
	* @see		I2C_StopReq
	*/
BOOL I2C_MasterReadReq(I2C0_Type* I2Cx, uint8_t size);

/**
  * @brief  Read data from I2C
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] size Expected data size to be read
	* @param[out] Data A user-allocated buffer to fetch data to be read
  * @retval uint8_t Actual read data size
	*/
uint8_t I2C_ReadFifo(I2C0_Type* I2Cx, uint8_t size, uint8_t* data);

/**
  * @brief  I2C send write request in master or slave mode
	* @note   Users must call I2C_StopReq between 2 requests
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] size Expected data size to be written, includes the first data
	* @param[in] firstData The first data to be written
  * @retval BOOL The bit indicates if write request to be sent is valid
	* @see		I2C_StopReq
	*/
BOOL I2C_WriteReq(I2C0_Type* I2Cx, uint8_t size, uint8_t firstData);

/**
  * @brief  Write data to I2C
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @param[in] size Expected data size to be written
	* @param[in] Data A pointer to the data to be written
  * @retval uint8_t Actual written data size
	*/
uint8_t I2C_WriteFifo(I2C0_Type* I2Cx, uint8_t size, uint8_t* data);

/**
  * @brief  I2C stop request
	* @note   Users must call I2C_StopReq between 2 requests
	* @param[in] I2Cx I2C peripheral, which is I2C0 or I2C1
	* @retval BOOL The bit indicates if request is stopped.
	* @see		I2C_MasterReadReq I2C_WriteReq 
	*/
BOOL I2C_StopReq(I2C0_Type* I2Cx);

#ifdef __cplusplus
}
#endif

#endif /*__CMEM7_I2C_H */