eive-obsw/bsp_q7s/gpio/cookies/GpioCookie.cpp
2021-01-23 17:22:40 +01:00

27 lines
617 B
C++

#include <bsp_q7s/gpio/cookies/GpioCookie.h>
GpioCookie::GpioCookie() {
}
void GpioCookie::addGpio(GpioMap newEntry){
gpioMapIter = gpioMap.find(newEntry);
if(gpioMapIter == gpioMap.end()) {
std::pair status = gpioMap.emplace(newEntry);
if (status.second == false) {
sif::error << "GpioCookie::addGpio: Failed to add GPIO "
<< newEntry.first << "to GPIO map" << std::endl;
return HasReturnvaluesIF::RETURN_OK;
}
}
else {
sif::error << "GpioCookie::addGpio: GPIO already exists in GPIO map "
<< std::endl;
}
}
GpioMap getGpioMap() const{
return gpioMap;
}
GpioCookie::~GpioCookie() {}