Possible Ring Buffer Fix #586

Merged
muellerr merged 20 commits from eive/fsfw:mueller/possible-ring-buffer-fix into development 2022-07-25 10:12:40 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit b7a316008a - Show all commits

View File

@ -82,7 +82,7 @@ TEST_CASE("Command Executor", "[cmd-exec]") {
readBytes = 0;
sizesFifo.retrieve(&readBytes);
// That's about the size of the reply
bool beTrue = (readBytes > 200) and (readBytes < 300);
bool beTrue = (readBytes > 200) and (readBytes < 400);
REQUIRE(beTrue);
uint8_t largerReadBuffer[1024] = {};
outputBuffer.readData(largerReadBuffer, readBytes);