Skip to content

Commit

Permalink
feat: Printing of the full EVR config added.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerzyjamroz committed Dec 28, 2023
1 parent c171c69 commit bf85058
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions evrMrmApp/src/drvem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,20 @@ try{
formFactor form = getFormFactor();

printf("%s: ", formFactorStr().c_str());
printf("Out FP:%u FPUNIV:%u RB:%u IFP:%u GPIO:%u\n",
(unsigned int)conf->nOFP,(unsigned int)conf->nOFPUV,
(unsigned int)conf->nORB,(unsigned int)conf->nIFP,
(unsigned int)conf->nOFPDly);

std::cout << "Config: "
<< " Model " << conf->model
<< " Pul " << conf->nPul
<< " PS " << conf->nPS
<< " OFP " << conf->nOFP
<< " OFPUNIV " << conf->nOFPUV
<< " ORB " << conf->nORB
<< " OBack " << conf->nOBack
<< " OFPDly " << conf->nOFPDly
<< " CML " << conf->nCML
<< " Kind " << static_cast<int>(conf->kind)
<< " IFP " << conf->nIFP
<< std::endl;

inputs.resize(conf->nIFP);
for(size_t i=0; i<conf->nIFP; i++){
Expand Down

0 comments on commit bf85058

Please sign in to comment.