starting fsfw

This commit is contained in:
2023-09-11 18:12:52 +02:00
parent dcce9574c8
commit fb8f4a68e7
419 changed files with 146315 additions and 10 deletions

View File

@ -0,0 +1,17 @@
#pragma once
#include <fsfw/devicehandlers/CookieIF.h>
#include <stddef.h>
class SerialTCPCookie : public CookieIF {
public:
SerialTCPCookie(const char* host, uint16_t port, bool flush, size_t bufferSize);
virtual ~SerialTCPCookie();
const char* const host;
const uint16_t port;
const bool flush;
uint8_t *buffer;
const size_t bufferSize;
int socket;
};