Changeset 11120


Ignore:
Timestamp:
06/22/11 22:17:23 (13 years ago)
Author:
tbretz
Message:
Decode PLLLCK
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/HeadersFAD.cc

    r10782 r11120  
    3939    out << "Status=" << hex << fStatus << endl;
    4040    // PllLock -> 1111
    41     out << "  RefClk locked (PLLLCK):  " << hex << (int)PLLLCK();
     41    out << "  RefClk locked (PLLLCK):  "
     42        << (PLLLCK()&1) << " "
     43        << (PLLLCK()&2) << " "
     44        << (PLLLCK()&4) << " "
     45        << (PLLLCK()&8) << endl;
    4246    if (IsRefClockTooHigh())
    4347        out << " (too high)";
Note: See TracChangeset for help on using the changeset viewer.