Skip to content

Commit

Permalink
Remove unnecessary print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgecrw committed Feb 2, 2024
1 parent e6d26cc commit 77bbe66
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ void continueSendingLogData(dmConnId_t connId, uint16_t max_length)
{
// Determine if there is more data to be transmitted
const uint16_t transmit_length = MIN(max_length, buffer_length - buffer_index);
print("T_LENGTH: %u\n", (uint32_t)transmit_length);
if (transmit_length)
{
// Transmit the next chunk of data
Expand Down

0 comments on commit 77bbe66

Please sign in to comment.