We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b940d commit eef8a37Copy full SHA for eef8a37
1 file changed
meshtastic/mesh_interface.py
@@ -847,6 +847,7 @@ def sendWaypoint(
847
wantAck: bool = True,
848
wantResponse: bool = False,
849
channelIndex: int = 0,
850
+ hopLimit: Optional[int]=None,
851
): # pylint: disable=R0913
852
"""
853
Send a waypoint packet to some other node (normally a broadcast)
@@ -886,6 +887,7 @@ def sendWaypoint(
886
887
wantResponse=wantResponse,
888
onResponse=onResponse,
889
channelIndex=channelIndex,
890
+ hopLimit=hopLimit,
891
)
892
if wantResponse:
893
self.waitForWaypoint()
0 commit comments