moved stuff to linux folder

This commit is contained in:
2021-02-14 14:55:33 +01:00
parent b4e6edce80
commit f64d707f4c
13 changed files with 26 additions and 15 deletions

16
linux/csp/CspCookie.cpp Normal file
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;
}