Compare commits
3 Commits
mohr/intro
...
small-fix-
| Author | SHA1 | Date | |
|---|---|---|---|
| 04122ffec5 | |||
| 7e0a5d5a9e | |||
| ee1c6a3f04 |
@@ -48,12 +48,12 @@ LocalPoolObjectBase::LocalPoolObjectBase(object_id_t poolOwner, lp_id_t poolId,
|
|||||||
if (hkOwner == nullptr) {
|
if (hkOwner == nullptr) {
|
||||||
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||||
sif::error << "LocalPoolVariable: The supplied pool owner 0x" << std::hex << poolOwner
|
sif::error << "LocalPoolVariable: The supplied pool owner 0x" << std::hex << poolOwner
|
||||||
<< std::dec << " did not implement the correct interface "
|
<< std::dec << " does not exist or does not implement the correct interface "
|
||||||
<< "HasLocalDataPoolIF" << std::endl;
|
<< "HasLocalDataPoolIF" << std::endl;
|
||||||
#else
|
#else
|
||||||
sif::printError(
|
sif::printError(
|
||||||
"LocalPoolVariable: The supplied pool owner 0x%08x did not implement the correct "
|
"LocalPoolVariable: The supplied pool owner 0x%08x does not exist or does not implement "
|
||||||
"interface HasLocalDataPoolIF\n",
|
"the correct interface HasLocalDataPoolIF\n",
|
||||||
poolOwner);
|
poolOwner);
|
||||||
#endif
|
#endif
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -44,6 +44,7 @@ class DleParser {
|
|||||||
Context(void* args) : userArgs(args) { setType(ContextType::PACKET_FOUND); }
|
Context(void* args) : userArgs(args) { setType(ContextType::PACKET_FOUND); }
|
||||||
|
|
||||||
void setType(ContextType type) {
|
void setType(ContextType type) {
|
||||||
|
this->type = type;
|
||||||
if (type == ContextType::PACKET_FOUND) {
|
if (type == ContextType::PACKET_FOUND) {
|
||||||
error.first = ErrorTypes::NONE;
|
error.first = ErrorTypes::NONE;
|
||||||
error.second.len = 0;
|
error.second.len = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user