Skip to content

Commit

Permalink
probes -> probe
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiegle committed Aug 30, 2023
1 parent a10e4a2 commit 3f02d15
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Source/Headstages/Headstage1_v1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,12 @@ Headstage1_v1::Headstage1_v1(Basestation* bs_, int port) : Headstage(bs_, port)
else
probes.remove(0, true);

LOGC("Headstage has ", probes.size(), " valid probes connected.");
if (probes.size() != 1)
{
LOGC("Headstage has ", probes.size(), " valid probes connected.");
}
else
LOGC("Headstage has 1 valid probe connected.");
}

}
Expand Down
7 changes: 6 additions & 1 deletion Source/Headstages/Headstage1_v3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,12 @@ Headstage1_v3::Headstage1_v3(Basestation* bs_, int port) : Headstage(bs_, port)
else
probes.remove(0, true);

LOGC("Headstage has ", probes.size(), " valid probes connected.");
if (probes.size() != 1)
{
LOGC("Headstage has ", probes.size(), " valid probes connected.");
}
else
LOGC("Headstage has 1 valid probe connected.");
}

}
Expand Down

0 comments on commit 3f02d15

Please sign in to comment.