/* * Author: Brendan Le Foll * Copyright (c) 2014 Intel Corporation. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include "i2c.h" namespace maa { /** * @brief C++ API to Inter-Integrated Circuit * * This file defines the I2c C++ interface for libmaa * * @snippet I2c-compass.cpp Interesting */ class I2c { public: /** * Instantiates an i2c bus. Multiple instances of the same bus can * exist and the bus is not guarranteed to be on the correct address * before read/write. * * @param bus The i2c bus to use * @param raw Whether to disable pinmapper for your board */ I2c(int bus, bool raw=false) { if (raw) m_i2c = maa_i2c_init_raw(bus); else m_i2c = maa_i2c_init(bus); } /** * Closes the I2c Bus used. This does not guarrantee the bus will not * be usable by anyone else or communicates this disconnect to any * slaves. */ ~I2c() { maa_i2c_stop(m_i2c); } /** * Sets the i2c Frequency for communication. Your board may not support * the set frequency. Anyone can change this at any time and this will * affect every slave on the bus * * @param hz Frequency to set the bus to in hz * @return Result of operation */ maa_result_t frequency(int hz) { return maa_i2c_frequency(m_i2c, hz); } /** * Set the slave to talk to, typically called before every read/write * operation * * @param address Communicate to the i2c slave on this address * @return Result of operation */ maa_result_t address(int address) { return maa_i2c_address(m_i2c, address); } /** * Read exactly one byte from the bus * * @return Char read from the bus */ unsigned char read_byte() { return (unsigned char) maa_i2c_read_byte(m_i2c); } /** * Read mutliple bytes from the bus * * @param data Buffer to write into * @param length Size of read * @return Result of operation */ maa_result_t read(unsigned char * data, int length) { return maa_i2c_read(m_i2c, data, length); } /** * Write one byte to the bus * * @param data Buffer to send on the bus * @param length Size of buffer to send * @return Result of operation */ maa_result_t write(const unsigned char* data, int length) { return maa_i2c_write(m_i2c, data, length); } /** * Write multiple bytes to the bus * * @param data The byte to send on the bus * @return Result of operation */ maa_result_t write_byte(const unsigned char data) { return maa_i2c_write_byte(m_i2c, data); } private: maa_i2c_context m_i2c; }; }