mirror of
https://github.com/eclipse/upm.git
synced 2025-03-26 02:10:02 +03:00

merged with #413 from maleek Signed-off-by: g-vidal <gerard.vidal@ens-lyon.fr> Signed-off-by: Keelan Lightfoot <keelanlightfoot@gmail.com> Signed-off-by: Jon Trulson <jtrulson@ics.com>
139 lines
3.8 KiB
C++
139 lines
3.8 KiB
C++
/*
|
|
* Author: Gerard Vidal <gerard.vidal@ens-lyon.fr>
|
|
* Copyright (c) 2017 IFE-ENS-Lyon
|
|
* Author: Keelan Lightfoot <keelanlightfoot@gmail.com>
|
|
* Copyright (c) 2015 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.
|
|
*/
|
|
|
|
#include "tca9548a.hpp"
|
|
#include <syslog.h>
|
|
|
|
#include <unistd.h>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
using namespace upm;
|
|
|
|
TCA9548A::TCA9548A (int bus, uint8_t address){
|
|
m_name = "tca9548a";
|
|
if(!(i2c = new mraa::I2c(bus))){
|
|
throw std::invalid_argument(std::string(__FUNCTION__)
|
|
+": I2c.init() failed");
|
|
return;
|
|
}
|
|
|
|
if((i2c->address(address) != mraa::SUCCESS)){
|
|
throw std::invalid_argument(std::string(__FUNCTION__)
|
|
+ ": I2c.address() failed");
|
|
return;
|
|
}
|
|
|
|
if(i2c->frequency( mraa::I2C_FAST) != mraa::SUCCESS){
|
|
syslog(LOG_WARNING,
|
|
"%s: I2c.frequency(I2C_FAST) failed, using default speed",
|
|
std::string(__FUNCTION__).c_str());
|
|
}
|
|
}
|
|
|
|
TCA9548A::~TCA9548A (){
|
|
delete i2c;
|
|
}
|
|
|
|
|
|
bool
|
|
TCA9548A::getPort(int port) {
|
|
uint8_t config;
|
|
// Check range
|
|
if (!validPort(port)) {
|
|
throw std::invalid_argument(std::string(__FUNCTION__)
|
|
+ ": port index out of range");
|
|
return false;
|
|
}
|
|
// Get current port configuration
|
|
config = getPortConfig();
|
|
// Check if the bit is set
|
|
return (config & (0x01 << port));
|
|
}
|
|
|
|
void
|
|
TCA9548A::setPort(int port, TCA9548A_PORT_STATE state,
|
|
TCA9548A_PORT_MODE mode) {
|
|
uint8_t config;
|
|
// Check range
|
|
if (!validPort(port)) {
|
|
throw std::invalid_argument(std::string(__FUNCTION__)
|
|
+ ": port index out of range");
|
|
return;
|
|
}
|
|
// If we're enabling more than one port at a time, we need to do a
|
|
// read-modify-write.
|
|
if (mode == INCLUSIVE) {
|
|
config = getPortConfig();
|
|
} else {
|
|
config = TCA9548A_NO_PORTS;
|
|
}
|
|
|
|
// Convert port number to control byte
|
|
if (state == ENABLED) {
|
|
config |= (0x01 << port);
|
|
} else {
|
|
config &= ~(0x01 << port);
|
|
}
|
|
// Set port
|
|
setPortConfig(config);
|
|
}
|
|
|
|
void
|
|
TCA9548A::disableAllPorts() {
|
|
// Turn off all ports
|
|
setPortConfig(TCA9548A_NO_PORTS);
|
|
}
|
|
|
|
void
|
|
TCA9548A::enableAllPorts() {
|
|
// Turn on all ports
|
|
setPortConfig(TCA9548A_ALL_PORTS);
|
|
}
|
|
|
|
//Private functions
|
|
|
|
uint8_t
|
|
TCA9548A::getPortConfig() {
|
|
return i2c->readByte();
|
|
}
|
|
|
|
void
|
|
TCA9548A::setPortConfig(uint8_t config) {
|
|
if(i2c->writeByte(config) != mraa::SUCCESS) {
|
|
throw std::runtime_error(std::string(__FUNCTION__)
|
|
+ ": I2c.write() failed");
|
|
return;
|
|
}
|
|
}
|
|
|
|
bool
|
|
TCA9548A::validPort(int port) {
|
|
return (port >= TCA9548A_MIN_PORT && port <= TCA9548A_MAX_PORT);
|
|
}
|