Skip to content

Commit

Permalink
Cleaning up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rrivera747 committed Jul 11, 2024
1 parent 24b2449 commit 050e155
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions dtcInterfaceLib/DTC_Registers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -746,26 +746,6 @@ bool DTCLib::DTC_Registers::ReadDropDataToEmulateEventBuilding(std::optional<uin
return data[10];
}

// void DTCLib::DTC_Registers::SetSequenceNumberDisable()
// {
// std::bitset<32> data = ReadRegister_(CFOandDTC_Register_Control);
// data[10] = 1;
// WriteRegister_(data.to_ulong(), CFOandDTC_Register_Control);
// }

// void DTCLib::DTC_Registers::ClearSequenceNumberDisable()
// {
// std::bitset<32> data = ReadRegister_(CFOandDTC_Register_Control);
// data[10] = 0;
// WriteRegister_(data.to_ulong(), CFOandDTC_Register_Control);
// }

// bool DTCLib::DTC_Registers::ReadSequenceNumberDisable(std::optional<uint32_t> val)
// {
// std::bitset<32> data = val.has_value() ? *val : ReadRegister_(CFOandDTC_Register_Control);
// return data[10];
// }

void DTCLib::DTC_Registers::SetPunchEnable()
{
std::bitset<32> data = ReadRegister_(CFOandDTC_Register_Control);
Expand Down

0 comments on commit 050e155

Please sign in to comment.