diff --git a/Os/RawTime.hpp b/Os/RawTime.hpp index 72f0e56b83..fa12620da2 100644 --- a/Os/RawTime.hpp +++ b/Os/RawTime.hpp @@ -146,6 +146,7 @@ class RawTime final : public RawTimeInterface { //! that value in its config/ folder. //! //! \param buffer The buffer to serialize the contents into. + //! \param mode Endianness to use when serializing to buffer. //! \return Fw::SerializeStatus indicating the result of the serialization. Fw::SerializeStatus serializeTo(Fw::SerialBufferBase& buffer, Fw::Endianness mode = Fw::Endianness::BIG) const override; @@ -161,6 +162,7 @@ class RawTime final : public RawTimeInterface { //! that value in its config/ folder. //! //! \param buffer The buffer to deserialize the contents from. + //! \param mode Endianness to use when deserializing from the buffer. //! \return Fw::SerializeStatus indicating the result of the deserialization. Fw::SerializeStatus deserializeFrom(Fw::SerialBufferBase& buffer, Fw::Endianness mode = Fw::Endianness::BIG) override;