123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- /*!
- * @file apm32f10x_i2c.h
- *
- * @brief This file contains all the functions prototypes for the I2C firmware library
- *
- * @version V1.0.4
- *
- * @date 2022-12-01
- *
- * @attention
- *
- * Copyright (C) 2020-2022 Geehy Semiconductor
- *
- * You may not use this file except in compliance with the
- * GEEHY COPYRIGHT NOTICE (GEEHY SOFTWARE PACKAGE LICENSE).
- *
- * The program is only for reference, which is distributed in the hope
- * that it will be useful and instructional for customers to develop
- * their software. Unless required by applicable law or agreed to in
- * writing, the program is distributed on an "AS IS" BASIS, WITHOUT
- * ANY WARRANTY OR CONDITIONS OF ANY KIND, either express or implied.
- * See the GEEHY SOFTWARE PACKAGE LICENSE for the governing permissions
- * and limitations under the License.
- */
- /* Define to prevent recursive inclusion */
- #ifndef __APM32F10X_I2C_H
- #define __APM32F10X_I2C_H
- /* Includes */
- #include "apm32f10x.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- /** @addtogroup APM32F10x_StdPeriphDriver
- @{
- */
- /** @addtogroup I2C_Driver I2C Driver
- @{
- */
- /** @defgroup I2C_Enumerations Enumerations
- @{
- */
- /**
- * @brief I2C Mode
- */
- typedef enum
- {
- I2C_MODE_I2C = 0x0000,
- I2C_MODE_SMBUUSDEVICE = 0x0002,
- I2C_MODE_SMBUSHOST = 0x000A
- } I2C_MODE_T;
- /**
- * @brief I2C duty cycle in fast mode
- */
- typedef enum
- {
- I2C_DUTYCYCLE_16_9 = 0x4000,
- I2C_DUTYCYCLE_2 = 0xBFFF
- } I2C_DUTYCYCLE_T;
- /**
- * @brief I2C acknowledgement
- */
- typedef enum
- {
- I2C_ACK_DISABLE,
- I2C_ACK_ENABLE
- } I2C_ACK_T;
- /**
- * @brief I2C acknowledged address
- */
- typedef enum
- {
- I2C_ACK_ADDRESS_7BIT = 0x4000,
- I2C_ACK_ADDRESS_10BIT = 0xC000
- } I2C_ACK_ADDRESS_T;
- /**
- * @brief I2C interrupts definition
- */
- typedef enum
- {
- I2C_INT_BUF = 0x0400,
- I2C_INT_EVT = 0x0200,
- I2C_INT_ERR = 0x0100
- } I2C_INT_T;
- /**
- * @brief I2C transfer direction
- */
- typedef enum
- {
- I2C_DIRECTION_TX,
- I2C_DIRECTION_RX
- } I2C_DIRECTION_T;
- /**
- * @brief I2C Register
- */
- typedef enum
- {
- I2C_REGISTER_CTRL1,
- I2C_REGISTER_CTRL2,
- I2C_REGISTER_SADDR1,
- I2C_REGISTER_SADDR2,
- I2C_REGISTER_DATA,
- I2C_REGISTER_STS1,
- I2C_REGISTER_STS2,
- I2C_REGISTER_CLKCTRL,
- I2C_REGISTER_RISETMAX,
- I2C_REGISTER_SWITCH
- } I2C_REGISTER_T;
- /**
- * @brief I2C NCAK position
- */
- typedef enum
- {
- I2C_NACK_POSITION_NEXT,
- I2C_NACK_POSITION_CURRENT
- } I2C_NACK_POSITION_T;
- /**
- * @brief I2C SMBus alert pin level
- */
- typedef enum
- {
- I2C_SMBUSALER_LOW,
- I2C_SMBUSALER_HIGH
- } I2C_SMBUSALER_T;
- /**
- * @brief I2C PEC position
- */
- typedef enum
- {
- I2C_PEC_POSITION_NEXT,
- I2C_PEC_POSITION_CURRENT
- } I2C_PEC_POSITION_T;
- /**
- * @brief I2C Events
- */
- typedef enum
- {
- /* I2C Master Events */
- /* Event 5: Communication start event */
- I2C_EVENT_MASTER_MODE_SELECT = 0x00030001, /*!< BUSBSYFLG, MSFLG and STARTFLG flag */
- /* Event 6: 7-bit Address Acknowledge
- in case of master receiver
- */
- I2C_EVENT_MASTER_TRANSMITTER_MODE_SELECTED = 0x00070082, /*!< BUSBSYFLG, MSFLG, ADDRFLG, TXBEFLG and TRFLG flags */
- I2C_EVENT_MASTER_RECEIVER_MODE_SELECTED = 0x00030002, /*!< BUSBSYFLG, MSFLG and ADDRFLG flags */
- /* Event 9: Master has sent the first byte
- in 10-bit address mode
- */
- I2C_EVENT_MASTER_MODE_ADDRESS10 = 0x00030008, /*!< BUSBSYFLG, MSFLG and ADDR10FLG flags */
- /* Master RECEIVER mode */
- /* Event 7 */
- I2C_EVENT_MASTER_BYTE_RECEIVED = 0x00030040, /*!< BUSBSYFLG, MSFLG and RXBNEFLG flags */
- /* Master TRANSMITTER mode */
- /* Event 8 */
- I2C_EVENT_MASTER_BYTE_TRANSMITTING = 0x00070080, /*!< TRFLG, BUSBSYFLG, MSFLG, TXBEFLG flags */
- /* Event 8_2 */
- I2C_EVENT_MASTER_BYTE_TRANSMITTED = 0x00070084, /*!< TRFLG, BUSBSYFLG, MSFLG, TXBEFLG and BTCFLG flags */
- /* EV1 (all the events below are variants of EV1) */
- /* 1, Case of One Single Address managed by the slave */
- I2C_EVENT_SLAVE_RECEIVER_ADDRESS_MATCHED = 0x00020002, /*!< BUSBSYFLG and ADDRFLG flags */
- I2C_EVENT_SLAVE_TRANSMITTER_ADDRESS_MATCHED = 0x00060082, /*!< TRFLG, BUSBSYFLG, TXBEFLG and ADDRFLG flags */
- /* 2, Case of Dual address managed by the slave */
- I2C_EVENT_SLAVE_RECEIVER_SECONDADDRESS_MATCHED = 0x00820000, /*!< DUALF and BUSBSYFLG flags */
- I2C_EVENT_SLAVE_TRANSMITTER_SECONDADDRESS_MATCHED = 0x00860080, /*!< DUALF, TRFLG, BUSBSYFLG and TXBEFLG flags */
- /* 3, Case of General Call enabled for the slave */
- I2C_EVENT_SLAVE_GENERALCALLADDRESS_MATCHED = 0x00120000, /*!< GENCALL and BUSBSYFLG flags */
- /* Slave RECEIVER mode */
- /* EV2 */
- I2C_EVENT_SLAVE_BYTE_RECEIVED = 0x00020040, /*!< BUSBSYFLG and RXBNEFLG flags */
- /* EV4 */
- I2C_EVENT_SLAVE_STOP_DETECTED = 0x00000010, /*!< STOPFLG flag */
- /* Slave TRANSMITTER mode */
- /* EV3 */
- I2C_EVENT_SLAVE_BYTE_TRANSMITTED = 0x00060084, /*!< TRFLG, BUSBSYFLG, TXBEFLG and BTCFLG flags */
- I2C_EVENT_SLAVE_BYTE_TRANSMITTING = 0x00060080, /*!< TRFLG, BUSBSYFLG and TXBEFLG flags */
- /* EV3_2 */
- I2C_EVENT_SLAVE_ACK_FAILURE = 0x00000400, /*!< AEFLG flag */
- } I2C_EVENT_T;
- /**
- * @brief I2C flags
- */
- typedef enum
- {
- /* STS2 register flags */
- I2C_FLAG_DUALADDR,
- I2C_FLAG_SMMHADDR,
- I2C_FLAG_SMBDADDR,
- I2C_FLAG_GENCALL,
- I2C_FLAG_TR,
- I2C_FLAG_BUSBSY,
- I2C_FLAG_MS,
- /* STS1 register flags */
- I2C_FLAG_SMBALT,
- I2C_FLAG_TTE,
- I2C_FLAG_PECE,
- I2C_FLAG_OVRUR,
- I2C_FLAG_AE,
- I2C_FLAG_AL,
- I2C_FLAG_BERR,
- I2C_FLAG_TXBE,
- I2C_FLAG_RXBNE,
- I2C_FLAG_STOP,
- I2C_FLAG_ADDR10,
- I2C_FLAG_BTC,
- I2C_FLAG_ADDR,
- I2C_FLAG_START,
- } I2C_FLAG_T;
- /**
- * @brief I2C interrupt
- */
- typedef enum
- {
- I2C_INT_FLAG_SMBALT = 0x01008000,
- I2C_INT_FLAG_TTE = 0x01004000,
- I2C_INT_FLAG_PECE = 0x01001000,
- I2C_INT_FLAG_OVRUR = 0x01000800,
- I2C_INT_FLAG_AE = 0x01000400,
- I2C_INT_FLAG_AL = 0x01000200,
- I2C_INT_FLAG_BERR = 0x01000100,
- I2C_INT_FLAG_TXBE = 0x06000080,
- I2C_INT_FLAG_RXBNE = 0x06000040,
- I2C_INT_FLAG_STOP = 0x02000010,
- I2C_INT_FLAG_ADDR10 = 0x02000008,
- I2C_INT_FLAG_BTC = 0x02000004,
- I2C_INT_FLAG_ADDR = 0x02000002,
- I2C_INT_FLAG_START = 0x02000001,
- } I2C_INT_FLAG_T;
- /**@} end of group I2C_Enumerations*/
- /** @defgroup I2C_Structures Structures
- @{
- */
- /**
- * @brief I2C Config structure definition
- */
- typedef struct
- {
- uint32_t clockSpeed;
- I2C_MODE_T mode;
- I2C_DUTYCYCLE_T dutyCycle;
- uint16_t ownAddress1;
- I2C_ACK_T ack;
- I2C_ACK_ADDRESS_T ackAddress;
- } I2C_Config_T;
- /**@} end of group I2C_Structures*/
- /** @defgroup I2C_Functions Functions
- @{
- */
- /* I2C reset and configuration */
- void I2C_Reset(I2C_T* i2c);
- void I2C_Config(I2C_T* i2c, I2C_Config_T* i2cConfig);
- void I2C_ConfigStructInit(I2C_Config_T* i2cConfig);
- void I2C_Enable(I2C_T* i2c);
- void I2C_Disable(I2C_T* i2c);
- void I2C_EnableGenerateStart(I2C_T* i2c);
- void I2C_DisableGenerateStart(I2C_T* i2c);
- void I2C_EnableGenerateStop(I2C_T* i2c);
- void I2C_DisableGenerateStop(I2C_T* i2c);
- void I2C_EnableAcknowledge(I2C_T* i2c);
- void I2C_DisableAcknowledge(I2C_T* i2c);
- void I2C_ConfigOwnAddress2(I2C_T* i2c, uint8_t address);
- void I2C_EnableDualAddress(I2C_T* i2c);
- void I2C_DisableDualAddress(I2C_T* i2c);
- void I2C_EnableGeneralCall(I2C_T* i2c);
- void I2C_DisableGeneralCall(I2C_T* i2c);
- /* Transmit Configuration */
- void I2C_TxData(I2C_T* i2c, uint8_t data);
- uint8_t I2C_RxData(I2C_T* i2c);
- void I2C_Tx7BitAddress(I2C_T* i2c, uint8_t address, I2C_DIRECTION_T direction);
- uint16_t I2C_ReadRegister(I2C_T* i2c, I2C_REGISTER_T i2cRegister);
- void I2C_EnableSoftwareReset(I2C_T* i2c);
- void I2C_DisableSoftwareReset(I2C_T* i2c);
- void I2C_ConfigNACKPosition(I2C_T* i2c, I2C_NACK_POSITION_T NACKPosition);
- void I2C_ConfigSMBusAlert(I2C_T* i2c, I2C_SMBUSALER_T SMBusState);
- void I2C_EnablePECTransmit(I2C_T* i2c);
- void I2C_DisablePECTransmit(I2C_T* i2c);
- void I2C_ConfigPECPosition(I2C_T* i2c, I2C_PEC_POSITION_T PECPosition);
- void I2C_EnablePEC(I2C_T* i2c);
- void I2C_DisablePEC(I2C_T* i2c);
- uint8_t I2C_ReadPEC(I2C_T* i2c);
- void I2C_EnableARP(I2C_T* i2c);
- void I2C_DisableARP(I2C_T* i2c);
- void I2C_EnableStretchClock(I2C_T* i2c);
- void I2C_DisableStretchClock(I2C_T* i2c);
- void I2C_ConfigFastModeDutyCycle(I2C_T* i2c, I2C_DUTYCYCLE_T dutyCycle);
- /* DMA */
- void I2C_EnableDMA(I2C_T* i2c);
- void I2C_DisableDMA(I2C_T* i2c);
- void I2C_EnableDMALastTransfer(I2C_T* i2c);
- void I2C_DisableDMALastTransfer(I2C_T* i2c);
- /* Interrupts and flags */
- void I2C_EnableInterrupt(I2C_T* i2c, uint16_t interrupt);
- void I2C_DisableInterrupt(I2C_T* i2c, uint16_t interrupt);
- uint8_t I2C_ReadEventStatus(I2C_T* i2c, I2C_EVENT_T i2cEvent);
- uint32_t I2C_ReadLastEvent(I2C_T* i2c);
- uint8_t I2C_ReadStatusFlag(I2C_T* i2c, I2C_FLAG_T flag);
- void I2C_ClearStatusFlag(I2C_T* i2c, I2C_FLAG_T flag);
- uint8_t I2C_ReadIntFlag(I2C_T* i2c, I2C_INT_FLAG_T flag);
- void I2C_ClearIntFlag(I2C_T* i2c, uint32_t flag);
- /**@} end of group I2C_Functions*/
- /**@} end of group I2C_Driver*/
- /**@} end of group APM32F10x_StdPeriphDriver*/
- #ifdef __cplusplus
- }
- #endif
- #endif /* __APM32F10X_I2C_H */
|