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>
/**
* @brief This class can be used to implement the polling of a Unix socket,
* using UDP for now.
* @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.
* @brief This class should be used with the UdpTmTcBridge to implement a UDP server
* for receiving and sending PUS TMTC.
*/
class UdpTcPollingTask:
public TcpIpBase,

View File

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