mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 04:35:25 -06:00
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
#include <Fw/Prm/PrmBuffer.hpp>
|
|
#include <Fw/Types/Assert.hpp>
|
|
|
|
namespace Fw {
|
|
|
|
ParamBuffer::ParamBuffer(const U8 *args, NATIVE_UINT_TYPE size) {
|
|
SerializeStatus stat = SerializeBufferBase::setBuff(args,size);
|
|
FW_ASSERT(FW_SERIALIZE_OK == stat,static_cast<FwAssertArgType>(stat));
|
|
}
|
|
|
|
ParamBuffer::ParamBuffer() {
|
|
}
|
|
|
|
ParamBuffer::~ParamBuffer() {
|
|
}
|
|
|
|
ParamBuffer::ParamBuffer(const ParamBuffer& other) : Fw::SerializeBufferBase() {
|
|
SerializeStatus stat = SerializeBufferBase::setBuff(other.m_bufferData,other.getBuffLength());
|
|
FW_ASSERT(FW_SERIALIZE_OK == stat,static_cast<FwAssertArgType>(stat));
|
|
}
|
|
|
|
ParamBuffer& ParamBuffer::operator=(const ParamBuffer& other) {
|
|
if(this == &other) {
|
|
return *this;
|
|
}
|
|
|
|
SerializeStatus stat = SerializeBufferBase::setBuff(other.m_bufferData,other.getBuffLength());
|
|
FW_ASSERT(FW_SERIALIZE_OK == stat,static_cast<FwAssertArgType>(stat));
|
|
return *this;
|
|
}
|
|
|
|
NATIVE_UINT_TYPE ParamBuffer::getBuffCapacity() const {
|
|
return sizeof(this->m_bufferData);
|
|
}
|
|
|
|
const U8* ParamBuffer::getBuffAddr() const {
|
|
return this->m_bufferData;
|
|
}
|
|
|
|
U8* ParamBuffer::getBuffAddr() {
|
|
return this->m_bufferData;
|
|
}
|
|
|
|
}
|
|
|