heater wip
This commit is contained in:
26
bsp_q7s/gpio/cookies/GpioCookie.cpp
Normal file
26
bsp_q7s/gpio/cookies/GpioCookie.cpp
Normal file
@ -0,0 +1,26 @@
|
||||
#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() {}
|
Reference in New Issue
Block a user