@@ -193,6 +193,7 @@ class ProgramStatus : public Program
193193 std::string offset = (reportInfo.dynamicOffset ? " Dynamic" : " Fixed" );
194194 std::string userLogic = (reportInfo.userLogicEnabled ? " Enabled" : " Disabled" );
195195 std::string runStats = (reportInfo.runStatsEnabled ? " Enabled" : " Disabled" );
196+ std::string userAndCommonLogic = (reportInfo.userAndCommonLogicEnabled ? " Enabled" : " Disabled" );
196197
197198 /* GENERAL PARAMETERS */
198199 if (mOptions .monitoring ) {
@@ -202,13 +203,15 @@ class ProgramStatus : public Program
202203 .addValue (reportInfo.dynamicOffset , " dynamicOffset" )
203204 .addValue (reportInfo.userLogicEnabled , " userLogic" )
204205 .addValue (reportInfo.runStatsEnabled , " runStats" )
206+ .addValue (reportInfo.userAndCommonLogicEnabled , " userAndCommonLogic" )
205207 .addTag (tags::Key::ID, card.sequenceId )
206208 .addTag (tags::Key::Type, tags::Value::CRU));
207209 } else if (mOptions .jsonOut ) {
208210 root.put (" clock" , clock);
209211 root.put (" offset" , offset);
210212 root.put (" userLogic" , userLogic);
211213 root.put (" runStats" , runStats);
214+ root.put (" userAndCommonLogic" , userAndCommonLogic);
212215 } else if (mOptions .csvOut ) {
213216 auto csvLine = " ,,,,,,,,,," + clock + " ," + offset + " ," + userLogic + " ," + runStats + " \n " ;
214217 std::cout << csvLine;
@@ -218,6 +221,7 @@ class ProgramStatus : public Program
218221 std::cout << offset << " offset" << std::endl;
219222 std::cout << " User Logic " << userLogic << std::endl;
220223 std::cout << " Run statistics " << runStats << std::endl;
224+ std::cout << " User and Common logic " << runStats << std::endl;
221225 std::cout << " ----------------------------" << std::endl;
222226 }
223227
0 commit comments