Skip to content

Commit 393f278

Browse files
committed
[cru] TTCUP: Remove offending space
1 parent afaf330 commit 393f278

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ metric format for the CRORC and the CRU is different, as different parameters ar
485485
| `"pciAddress"` | - | string |
486486
| `"gbtMode"` | "GBT/GBT" or "GBT/WB" | string |
487487
| `"loopback"` | 0/1 (Enabled/Disabled) | int |
488-
| `"gbtMux"` | "DDG", "SWT", "TTC:CTP", "TTC:PATTERN", "TTC:MIDTRG", or "TTC UP" | string |
488+
| `"gbtMux"` | "DDG", "SWT", "TTC:CTP", "TTC:PATTERN", "TTC:MIDTRG", or "TTCUP" | string |
489489
| `"datapathMode"` | "PACKET" or "CONTINUOUS" | string |
490490
| `"datapath"` | 0/1 (Disabled/Enabled) | int |
491491
| `"rxFreq"` | - | double |

src/Cru/Gbt.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ void Gbt::setMux(int index, uint32_t mux)
4040
uint32_t reg = index / 16;
4141
uint32_t bitOffset = (index % 16) * 2;
4242
uint32_t address = Cru::Registers::GBT_MUX_SELECT.address + (reg * 4);
43-
std::cout << mux << std::endl;
4443
mPdaBar->modifyRegister(address / 4, bitOffset, 2, mux);
4544
}
4645

src/ParameterTypes/GbtMux.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static const auto converter = Utilities::makeEnumConverter<GbtMux::type>("GbtMux
2727
{ GbtMux::Ttc, "TTC" },
2828
{ GbtMux::Ddg, "DDG" },
2929
{ GbtMux::Swt, "SWT" },
30-
{ GbtMux::TtcUp, "TTC UP" },
30+
{ GbtMux::TtcUp, "TTCUP" },
3131
{ GbtMux::Na, "N/A" },
3232
});
3333

0 commit comments

Comments
 (0)