We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eef8a37 commit 38a13f3Copy full SHA for 38a13f3
1 file changed
meshtastic/mesh_interface.py
@@ -900,6 +900,7 @@ def deleteWaypoint(
900
wantAck: bool = True,
901
wantResponse: bool = False,
902
channelIndex: int = 0,
903
+ hopLimit: Optional[int]=None,
904
):
905
"""
906
Send a waypoint deletion packet to some other node (normally a broadcast)
@@ -926,6 +927,7 @@ def deleteWaypoint(
926
927
wantResponse=wantResponse,
928
onResponse=onResponse,
929
channelIndex=channelIndex,
930
+ hopLimit=hopLimit,
931
)
932
if wantResponse:
933
self.waitForWaypoint()
0 commit comments