fsfw/src/fsfw_tests/integration/devices/TestCookie.cpp
Robin Mueller 6f7be281ef
Some checks failed
fsfw/fsfw/pipeline/head There was a failure building this commit
move HAL and tests folder
2022-07-18 08:59:40 +02:00

11 lines
298 B
C++

#include "TestCookie.h"
TestCookie::TestCookie(address_t address, size_t replyMaxLen)
: address(address), replyMaxLen(replyMaxLen) {}
TestCookie::~TestCookie() {}
address_t TestCookie::getAddress() const { return address; }
size_t TestCookie::getReplyMaxLen() const { return replyMaxLen; }