@@ -44,11 +44,12 @@ void FpySequencer::RUN_cmdHandler(FwOpcodeType opCode, //!< The op
4444 this ->RUN_ARGS_cmdHandler (opCode, cmdSeq, fileName, block, Svc::SeqArgs{0 , 0 });
4545}
4646
47- void FpySequencer ::RUN_ARGS_cmdHandler (FwOpcodeType opCode, // !< The opcode
48- U32 cmdSeq, // !< The command sequence number
49- const Fw::CmdStringArg& fileName, // !< The name of the sequence file
50- Svc::FpySequencer_BlockState block, // !< Return command status when complete or not
51- Svc::SeqArgs args // !< Arguments to pass to the sequencer
47+ void FpySequencer ::RUN_ARGS_cmdHandler (
48+ FwOpcodeType opCode, // !< The opcode
49+ U32 cmdSeq, // !< The command sequence number
50+ const Fw::CmdStringArg& fileName, // !< The name of the sequence file
51+ Svc::FpySequencer_BlockState block, // !< Return command status when complete or not
52+ Svc::SeqArgs args // !< Arguments to pass to the sequencer
5253) {
5354 // can only run a seq while in idle
5455 if (sequencer_getState () != State::IDLE) {
@@ -125,7 +126,8 @@ void FpySequencer::RUN_VALIDATED_cmdHandler(
125126 this ->m_savedCmdSeq = cmdSeq;
126127 }
127128
128- this ->sequencer_sendSignal_cmd_RUN_VALIDATED (FpySequencer_SequenceExecutionArgs (this ->m_sequenceFilePath , block, this ->m_sequenceArgs ));
129+ this ->sequencer_sendSignal_cmd_RUN_VALIDATED (
130+ FpySequencer_SequenceExecutionArgs (this ->m_sequenceFilePath , block, this ->m_sequenceArgs ));
129131
130132 // only respond if the user doesn't want us to block further execution
131133 if (block == FpySequencer_BlockState::NO_BLOCK) {
@@ -387,7 +389,8 @@ void FpySequencer::seqRunIn_handler(FwIndexType portNum, const Fw::StringBase& f
387389
388390 // seqRunIn is never blocking - store args for pushArgsToStack action
389391 // Args must be serialized in F' big-endian format by the caller before being sent
390- this ->sequencer_sendSignal_cmd_RUN (FpySequencer_SequenceExecutionArgs (filename, FpySequencer_BlockState::NO_BLOCK, args));
392+ this ->sequencer_sendSignal_cmd_RUN (
393+ FpySequencer_SequenceExecutionArgs (filename, FpySequencer_BlockState::NO_BLOCK, args));
391394}
392395
393396// ! Handler for input port tlmWrite
0 commit comments