Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Svc/FprimeDeframer/FprimeDeframer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ class FprimeDeframer final : public FprimeDeframerComponentBase {
//! Destroy FprimeDeframer object
~FprimeDeframer();

PRIVATE:
private:
// ----------------------------------------------------------------------
// Handler implementations for user-defined typed input ports
// ----------------------------------------------------------------------

//! Handler implementation for frame
//!
//! Port to receive framed data. The handler will strip the header and trailer from the frame
//! Port to receive framed data. The handler will strip the header and trailer from the frame
//! and pass the deframed data to the deframed output port.
void dataIn_handler(FwIndexType portNum, //!< The port number
Fw::Buffer& data,
Expand Down
2 changes: 1 addition & 1 deletion Svc/FprimeFramer/FprimeFramer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class FprimeFramer final : public FprimeFramerComponentBase {
//! Destroy FprimeFramer object
~FprimeFramer();

PRIVATE:
private:
// ----------------------------------------------------------------------
// Handler implementations for typed input ports
// ----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion Svc/FprimeRouter/FprimeRouter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class FprimeRouter final : public FprimeRouterComponentBase {
//! Destroy FprimeRouter object
~FprimeRouter();

PRIVATE:
private:
// ----------------------------------------------------------------------
// Handler implementations for user-defined typed input ports
// ----------------------------------------------------------------------
Expand Down
9 changes: 6 additions & 3 deletions Svc/FrameAccumulator/FrameAccumulator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
namespace Svc {

class FrameAccumulator final : public FrameAccumulatorComponentBase {

friend class FrameAccumulatorTester;

public:
// ----------------------------------------------------------------------
// Component construction and destruction
Expand All @@ -41,7 +44,7 @@ class FrameAccumulator final : public FrameAccumulatorComponentBase {
void cleanup();


PRIVATE:
private:
// ----------------------------------------------------------------------
// Handler implementations for user-defined typed input ports
// ----------------------------------------------------------------------
Expand All @@ -58,10 +61,10 @@ class FrameAccumulator final : public FrameAccumulatorComponentBase {
//! Port receiving ownership back of buffers sent on dataOut
void dataReturnIn_handler(FwIndexType portNum, //!< The port number
Fw::Buffer& fwBuffer, //!< The buffer
const ComCfg::FrameContext& context //!< The context object
const ComCfg::FrameContext& context //!< The context object
) override;

PRIVATE:
private:
//! \brief process raw buffer
//! \return raw data buffer
void processBuffer(Fw::Buffer& buffer);
Expand Down
2 changes: 1 addition & 1 deletion Svc/FramingProtocol/DeframingProtocol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class DeframingProtocol {
U32& needed /*!< Return needed number of bytes */
) = 0;

PROTECTED:
protected:
DeframingProtocolInterface* m_interface;
};
}
Expand Down
2 changes: 1 addition & 1 deletion Svc/FramingProtocol/FramingProtocol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class FramingProtocol {
//! \param packet_type: type of data supplied for File downlink packets
virtual void frame(const U8* const data, const U32 size, Fw::ComPacket::ComPacketType packet_type) = 0;

PROTECTED:
protected:
FramingProtocolInterface* m_interface;
};
}
Expand Down
Loading