1
0
forked from fsfw/fsfw

Merge request check

This commit is contained in:
2020-01-16 19:07:53 +01:00
parent 9bdbc2c380
commit 1d1bb88a6f
10 changed files with 83 additions and 98 deletions

View File

@ -19,7 +19,7 @@
* @details
* An alternative to the AutoSerializeAdapter functions
* - All object members with a datatype are declared as SerializeElement<element_type>
* inside the class implementing this adapter.
* members inside the class implementing this adapter.
* - The element type can also be a SerialBufferAdapter to de-/serialize buffers,
* with a known size, where the size can also be serialized
* - The element type can also be a SerialFixedArrayListAdapter to de-/serialize buffers
@ -29,14 +29,13 @@
* the setStart and setNext functions.
*
* - The serialization process is done by instantiating the class and
* calling the serialize after all SerializeElement entries have been set by
* using a constructor or setter functions. An additional size variable can be supplied
* calling serializ after all SerializeElement entries have been set by
* using the constructor or setter functions. An additional size variable can be supplied
* which is calculated/incremented automatically
* - The deserialization process is done by instantiating the class and supplying
* a buffer with the data which is converted into an object. The size of
* data to serialize can be supplied and is decremented in the function
*
*
* @ingroup serialize
*/
template<typename T, typename count_t = uint8_t>