Remove verbose available() comment

This commit is contained in:
J. Nick Koston
2026-02-09 09:27:42 -06:00
parent dd07e25a8f
commit 5e096826c3
2 changed files with 0 additions and 4 deletions
@@ -30,8 +30,6 @@ void MR60BHA2Component::dump_config() {
// main loop
void MR60BHA2Component::loop() {
// All current UART available() implementations return >= 0,
// use <= 0 to future-proof against any that may return negative on error.
int avail = this->available();
if (avail <= 0) {
return;
@@ -49,8 +49,6 @@ void MR60FDA2Component::setup() {
// main loop
void MR60FDA2Component::loop() {
// All current UART available() implementations return >= 0,
// use <= 0 to future-proof against any that may return negative on error.
int avail = this->available();
if (avail <= 0) {
return;