Skip to content

Commit

Permalink
Fix issues in STARS code
Browse files Browse the repository at this point in the history
  • Loading branch information
bocchino committed Sep 2, 2024
1 parent 6efa37a commit 959f138
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@
// \brief cpp file for state machine ActiveStateMachines_S1
//
// ======================================================================

#include "stdio.h"
#include "assert.h"
#include "Fw/Types/SMSignalsSerializableAc.hpp"
#include "ActiveStateMachines_S1.hpp"

#include "ActiveStateMachines_S1.hpp"
#include "Fw/Types/Assert.hpp"

void M::ActiveStateMachines_S1::init(const FwEnumStoreType stateMachineId)
{
Expand Down Expand Up @@ -98,6 +95,6 @@ void M::ActiveStateMachines_S1::update(
break;

default:
assert(0);
FW_ASSERT(0);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@
//
// ======================================================================

#include "stdio.h"
#include "assert.h"
#include "Fw/Types/SMSignalsSerializableAc.hpp"
#include "ActiveStateMachines_S2.hpp"
#include "Fw/Types/Assert.hpp"


void M::ActiveStateMachines_S2::init(const FwEnumStoreType stateMachineId)
Expand Down Expand Up @@ -72,6 +70,6 @@ void M::ActiveStateMachines_S2::update(
break;

default:
assert(0);
FW_ASSERT(0);
}
}

0 comments on commit 959f138

Please sign in to comment.