Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
TMRh20 committed Jun 16, 2024
1 parent 97c5f3d commit f3f877b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RF24Mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ bool ESBMesh<network_t, radio_t>::checkConnection()
case -1: continue; // Write failed or timed out
case 0: return false; // This is a master node
default:
if ((uint16_t)result == mesh_address) {
if ((uint16_t)result == mesh_address) { // Successful address lookup if result == RF24Network address
return true;
}
break; // Successful address lookup if result == RF24Network address
break;
}
}
return false;
Expand Down

0 comments on commit f3f877b

Please sign in to comment.