Robin Mueller
5cc7331e90
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
11 lines
313 B
C++
11 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; }
|