Files
arduino
bsp_hosted
bsp_q7s
bsp_rpi
cmake
common
doc
fsfw
fsfwconfig
linux
boardtest
csp
CMakeLists.txt
CspComIF.cpp
CspComIF.h
CspCookie.cpp
CspCookie.h
gpio
i2c
spi
uart
utility
CMakeLists.txt
misc
mission
test
thirdparty
tmtc
unittest
.gitignore
.gitmodules
CMakeLists.txt
Makefile
Makefile-Hosted
README.md
eive-obsw/linux/csp/CspCookie.cpp

17 lines
313 B
C++

#include "CspCookie.h"
CspCookie::CspCookie(uint16_t maxReplyLength_, uint8_t cspAddress_) :
maxReplyLength(maxReplyLength_), cspAddress(cspAddress_) {
}
CspCookie::~CspCookie() {
}
uint16_t CspCookie::getMaxReplyLength(){
return maxReplyLength;
}
uint8_t CspCookie::getCspAddress(){
return cspAddress;
}