using _ instead of - now

This commit is contained in:
2021-08-02 20:55:03 +02:00
parent 0e5cfcf28f
commit f1f167c2d1
129 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1,20 @@
#include "fsfw-hal/linux/i2c/I2cCookie.h"
I2cCookie::I2cCookie(address_t i2cAddress_, size_t maxReplyLen_,
std::string deviceFile_) :
i2cAddress(i2cAddress_), maxReplyLen(maxReplyLen_), deviceFile(deviceFile_) {
}
address_t I2cCookie::getAddress() const {
return i2cAddress;
}
size_t I2cCookie::getMaxReplyLen() const {
return maxReplyLen;
}
std::string I2cCookie::getDeviceFile() const {
return deviceFile;
}
I2cCookie::~I2cCookie() {}