doc updatedoc updatedd

This commit is contained in:
Robin Müller 2021-03-23 14:25:50 +01:00
parent b1670decf7
commit a5f44b8580
2 changed files with 6 additions and 7 deletions

View File

@ -9,13 +9,8 @@
#include <vector> #include <vector>
/** /**
* @brief This class can be used to implement the polling of a Unix socket, * @brief This class should be used with the UdpTmTcBridge to implement a UDP server
* using UDP for now. * for receiving and sending PUS TMTC.
* @details
* The task will be blocked while the specified number of bytes has not been
* received, so TC reception is handled inside a separate task.
* This class caches the IP address of the sender. It is assumed there
* is only one sender for now.
*/ */
class UdpTcPollingTask: class UdpTcPollingTask:
public TcpIpBase, public TcpIpBase,

View File

@ -16,6 +16,10 @@
#include <string> #include <string>
/**
* @brief This class should be used with the UdpTcPollingTask to implement a UDP server
* for receiving and sending PUS TMTC.
*/
class UdpTmTcBridge: class UdpTmTcBridge:
public TmTcBridge, public TmTcBridge,
public TcpIpBase { public TcpIpBase {