diff --git a/serialize/SerializeIF.h b/serialize/SerializeIF.h index 5f8102c86..e96b7172e 100644 --- a/serialize/SerializeIF.h +++ b/serialize/SerializeIF.h @@ -13,22 +13,6 @@ * @brief An interface for alle classes which require * translation of objects data into data streams and vice-versa. * @details - * If the target architecture is little endian (e.g. ARM), any data types - * created might have the wrong endianess if they are to be used for the FSFW. - * Depending on the system architecture, endian correctness must be assured, - * This is important for incoming and outgoing data. The internal handling - * of data should be performed in the native system endianness. - * There are three ways to copy data (with different options to ensure - * endian correctness): - * - * 1. Use the @c AutoSerializeAdapter::deSerialize function (with - * the endian flag) - * 2. Perform a bitshift operation (with correct order) - * 3. @c memcpy (with @c EndianSwapper if necessary) - * - * When serializing for downlink, the packets are generally serialized - * assuming big endian data format like seen in TmPacketStored.cpp for example. - * * @ingroup serialize */ class SerializeIF {