added cmake support for csp lib

This commit is contained in:
2020-12-29 13:59:31 +01:00
parent 96ea535242
commit 9a6fbbaff6
42 changed files with 490 additions and 67 deletions

View File

@ -0,0 +1,16 @@
#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;
}