1
0
forked from fsfw/fsfw

typedef address_t moved to deviceComIF

This commit is contained in:
2020-03-19 00:49:47 +01:00
parent b5fe1fa530
commit a3903f80fb
4 changed files with 52 additions and 27 deletions

View File

@ -2,7 +2,13 @@
#define COOKIE_H_
/**
* This datatype is used to identify different connection over a single interface (like RMAP or I2C)
* @brief This datatype is used to identify different connection over a single interface
* (like RMAP or I2C)
* @details
* To use this class, implement a communication specific child cookie. This cookie
* can be used in the device communication interface by performing
* a C++ dynamic cast. The cookie can be used to store all kinds of information
* about the communication between read and send calls.
*/
class Cookie{
public: