| #pragma once |
| |
| #include "i2c_interface.hpp" |
| |
| namespace i2c |
| { |
| |
| class I2CDevice : public I2CInterface |
| { |
| private: |
| I2CDevice() = delete; |
| |
| /** @brief Constructor |
| * |
| * Construct I2CDevice object from the bus id and device address |
| * |
| * @param[in] busId - The i2c bus ID |
| * @param[in] devAddr - The device address of the I2C device |
| */ |
| explicit I2CDevice(uint8_t busId, uint8_t devAddr) : |
| busId(busId), devAddr(devAddr) |
| { |
| busStr = "/dev/i2c-" + std::to_string(busId); |
| open(); |
| } |
| |
| /** @brief Open the i2c device */ |
| void open(); |
| |
| /** @brief Close the i2c device */ |
| void close(); |
| |
| /** @brief The I2C bus ID */ |
| uint8_t busId; |
| |
| /** @brief The i2c device address in the bus */ |
| uint8_t devAddr; |
| |
| /** @brief The file descriptor of the opened i2c device */ |
| int fd; |
| |
| /** @brief The i2c bus path in /dev */ |
| std::string busStr; |
| |
| /** @brief Check i2c adapter read functionality |
| * |
| * Check if the i2c adapter has the functionality specified by the SMBus |
| * transaction type |
| * |
| * @param[in] type - The SMBus transaction type defined in linux/i2c.h |
| * |
| * @throw I2CException if the function is not supported |
| */ |
| void checkReadFuncs(int type); |
| |
| /** @brief Check i2c adapter write functionality |
| * |
| * Check if the i2c adapter has the functionality specified by the SMBus |
| * transaction type |
| * |
| * @param[in] type - The SMBus transaction type defined in linux/i2c.h |
| * |
| * @throw I2CException if the function is not supported |
| */ |
| void checkWriteFuncs(int type); |
| |
| public: |
| ~I2CDevice() |
| { |
| close(); |
| } |
| |
| /** @copydoc I2CInterface::read(uint8_t&) */ |
| void read(uint8_t& data) override; |
| |
| /** @copydoc I2CInterface::read(uint8_t,uint8_t&) */ |
| void read(uint8_t addr, uint8_t& data) override; |
| |
| /** @copydoc I2CInterface::read(uint8_t,uint16_t&) */ |
| void read(uint8_t addr, uint16_t& data) override; |
| |
| /** @copydoc I2CInterface::read(uint8_t,uint8_t&,uint8_t*) */ |
| void read(uint8_t addr, uint8_t& size, uint8_t* data) override; |
| |
| /** @copydoc I2CInterface::write(uint8_t) */ |
| void write(uint8_t data) override; |
| |
| /** @copydoc I2CInterface::write(uint8_t,uint8_t) */ |
| void write(uint8_t addr, uint8_t data) override; |
| |
| /** @copydoc I2CInterface::write(uint8_t,uint16_t) */ |
| void write(uint8_t addr, uint16_t data) override; |
| |
| /** @copydoc I2CInterface::write(uint8_t,uint8_t,const uint8_t*) */ |
| void write(uint8_t addr, uint8_t size, const uint8_t* data) override; |
| |
| /** @brief Create an I2CInterface instance |
| * |
| * @param[in] busId - The i2c bus ID |
| * @param[in] devAddr - The device address of the i2c |
| * |
| * @return The unique_ptr holding the I2CInterface |
| */ |
| static std::unique_ptr<I2CInterface> create(uint8_t busId, uint8_t devAddr); |
| }; |
| |
| } // namespace i2c |