eive-obsw/linux/csp/CspCookie.cpp

11 lines
313 B
C++
Raw Normal View History

2020-12-14 08:42:48 +01:00
#include "CspCookie.h"
2022-01-17 15:58:27 +01:00
CspCookie::CspCookie(uint16_t maxReplyLength_, uint8_t cspAddress_)
: maxReplyLength(maxReplyLength_), cspAddress(cspAddress_) {}
2020-12-14 08:42:48 +01:00
2022-01-17 15:58:27 +01:00
CspCookie::~CspCookie() {}
2020-12-14 08:42:48 +01:00
2022-01-17 15:58:27 +01:00
uint16_t CspCookie::getMaxReplyLength() { return maxReplyLength; }
2020-12-14 08:42:48 +01:00
2022-01-17 15:58:27 +01:00
uint8_t CspCookie::getCspAddress() { return cspAddress; }