Skip to content

Commit

Permalink
comment out debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
marenz2569 committed Aug 18, 2024
1 parent bbc5fb3 commit 3e4c021
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/borzoi/borzoi_sender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void BorzoiSender::worker() {
arg->basic_link_information_->basic_link_type_ == BasicLinkType::kBlAckWithFcs)) {
return;
}
std::cout << arg << std::endl;
// std::cout << arg << std::endl;
} else if constexpr (std::is_same_v<T, Slots>) {
/// send out the slots which had an error while parsing
send_failed_slots(arg);
Expand Down
2 changes: 1 addition & 1 deletion src/l2/lower_mac.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ auto LowerMac::process(std::vector<uint8_t> frame, BurstType burst_type) -> Lowe
// Set to true if there was some decoding error in the lower MAC
bool decode_error = false;

fmt::print("[Physical Channel] Decoding: {}\n", burst_type);
// fmt::print("[Physical Channel] Decoding: {}\n", burst_type);

// Once we received the Synchronization on the downlink, increment the time counter for every received burst.
// We do not have any time handling for uplink processing.
Expand Down

0 comments on commit 3e4c021

Please sign in to comment.